Struct xpcom::interfaces::nsIMultiplexInputStream [] [src]

#[repr(C)]
pub struct nsIMultiplexInputStream { /* fields omitted */ }

interface nsIMultiplexInputStream : nsISupports

/**
 * The multiplex stream concatenates a list of input streams into a single
 * stream.
 */

Methods

impl nsIMultiplexInputStream
[src]

[src]

Cast this nsIMultiplexInputStream to one of its base interfaces.

impl nsIMultiplexInputStream
[src]

[src]

/**
     * Number of streams in this multiplex-stream
     */

readonly attribute unsigned long count;

[src]

/**
     * Appends a stream to the end of the streams. The cursor of the stream
     * should be located at the beginning of the stream if the implementation
     * of this nsIMultiplexInputStream also is used as an nsISeekableStream.
     * @param stream  stream to append
     */

void appendStream (in nsIInputStream stream);

[src]

/**
     * Get stream at specified index.
     * @param index   return stream at this index, must be < count
     * @return        stream at specified index
     */

nsIInputStream getStream (in unsigned long index);

Methods from Deref<Target = nsISupports>

[src]

Cast this nsISupports to one of its base interfaces.

[src]

void QueryInterface (in nsIIDRef uuid, [iid_is (uuid), retval] out nsQIResult result);

[src]

[noscript,notxpcom] nsrefcnt AddRef ();

[src]

[noscript,notxpcom] nsrefcnt Release ();

Trait Implementations

impl XpCom for nsIMultiplexInputStream
[src]

IID: nsIID = nsID(2692152594, 7633, 4530, [177, 154, 213, 59, 93, 255, 170, 222])

[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 nsIMultiplexInputStream
[src]

[src]

Increment the reference count.

[src]

Decrement the reference count, potentially freeing backing memory.

impl Deref for nsIMultiplexInputStream
[src]

The resulting type after dereferencing.

[src]

Dereferences the value.