Struct xpcom::interfaces::nsISerializable  
                   
                       [−]
                   
               [src]
#[repr(C)]pub struct nsISerializable { /* fields omitted */ }
interface nsISerializable : nsISupports
Methods
impl nsISerializable[src]
pub fn coerce<T: nsISerializableCoerce>(&self) -> &T[src]
Cast this nsISerializable to one of its base interfaces.
impl nsISerializable[src]
pub unsafe fn Read(&self, aInputStream: *const nsIObjectInputStream) -> nsresult[src]
/**
     * Initialize the object implementing nsISerializable, which must have
     * been freshly constructed via CreateInstance.  All data members that
     * can't be set to default values must have been serialized by write,
     * and should be read from aInputStream in the same order by this method.
     */
void read (in nsIObjectInputStream aInputStream);
pub unsafe fn Write(
    &self, 
    aOutputStream: *const nsIObjectOutputStream
) -> nsresult[src]
&self,
aOutputStream: *const nsIObjectOutputStream
) -> nsresult
/**
     * Serialize the object implementing nsISerializable to aOutputStream, by
     * writing each data member that must be recovered later to reconstitute
     * a working replica of this object, in a canonical member and byte order,
     * to aOutputStream.
     *
     * NB: a class that implements nsISerializable *must* also implement
     * nsIClassInfo, in particular nsIClassInfo::GetClassID.
     */
void write (in nsIObjectOutputStream aOutputStream);
Methods from Deref<Target = nsISupports>
pub fn coerce<T: nsISupportsCoerce>(&self) -> &T[src]
Cast this nsISupports to one of its base interfaces.
pub unsafe fn QueryInterface(
    &self, 
    uuid: &nsIID, 
    result: *mut *mut c_void
) -> nsresult[src]
&self,
uuid: &nsIID,
result: *mut *mut c_void
) -> nsresult
void QueryInterface (in nsIIDRef uuid, [iid_is (uuid), retval] out nsQIResult result);
pub unsafe fn AddRef(&self) -> nsrefcnt[src]
[noscript,notxpcom] nsrefcnt AddRef ();
pub unsafe fn Release(&self) -> nsrefcnt[src]
[noscript,notxpcom] nsrefcnt Release ();
Trait Implementations
impl XpCom for nsISerializable[src]
const IID: nsIID
IID: nsIID = nsID(2446109057, 49773, 17576, [190, 190, 217, 237, 72, 145, 80, 58])
fn query_interface<T: XpCom>(&self) -> Option<RefPtr<T>>[src]
Perform a QueryInterface call on this object, attempting to dynamically cast it to the requested interface type. Returns Some(RefPtr) if the cast succeeded, and None otherwise. Read more
impl RefCounted for nsISerializable[src]
unsafe fn addref(&self)[src]
Increment the reference count.
unsafe fn release(&self)[src]
Decrement the reference count, potentially freeing backing memory.
impl Deref for nsISerializable[src]
type Target = nsISupports
The resulting type after dereferencing.
fn deref(&self) -> &nsISupports[src]
Dereferences the value.