Skip to main content

StreamByteOptions

Struct StreamByteOptions 

Source
pub struct StreamByteOptions {
    pub topic: String,
    pub attributes: HashMap<String, String>,
    pub destination_identities: Vec<ParticipantIdentity>,
    pub id: Option<String>,
    pub mime_type: Option<String>,
    pub name: Option<String>,
    pub total_length: Option<u64>,
    pub compress: Option<bool>,
    pub sender_identity: Option<ParticipantIdentity>,
}
Expand description

Options used when opening an outgoing byte data stream.

Fields§

§topic: String§attributes: HashMap<String, String>§destination_identities: Vec<ParticipantIdentity>§id: Option<String>

The id associated with the stream. If unspecified, a new uuid will be created and used per call.

§mime_type: Option<String>§name: Option<String>§total_length: Option<u64>§compress: Option<bool>

Whether to deflate-raw compress the payload when all recipients support it. Defaults to true (compression opt-out). Ignored by the incremental stream_bytes.

§sender_identity: Option<ParticipantIdentity>

The identity the stream’s packets are attributed to. If unspecified, the packets carry no explicit identity and the server attributes them to the sending participant. Only participants with the appropriate permission (e.g. agents) may impersonate another identity.

Implementations§

Source§

impl StreamByteOptions

Source

pub fn new_with_topic(topic: impl Into<String>) -> Self

Source

pub fn with_topic(self, topic: String) -> Self

Sets the topic the stream is published to.

Source

pub fn with_attributes(self, attributes: HashMap<String, String>) -> Self

Replaces all attributes attached to the stream.

Source

pub fn with_attribute( self, key: impl Into<String>, value: impl Into<String>, ) -> Self

Adds a single attribute to the stream, overwriting any existing value for key.

Source

pub fn with_destination_identities( self, destination_identities: Vec<ParticipantIdentity>, ) -> Self

Replaces the set of participant identities the stream is delivered to. An empty list delivers to all participants in the room.

Source

pub fn with_destination_identity( self, identity: impl Into<ParticipantIdentity>, ) -> Self

Adds a single participant identity to the stream’s destinations.

Source

pub fn with_id(self, id: impl Into<String>) -> Self

Sets an explicit stream id. If unset, a new uuid is generated per call.

Source

pub fn with_mime_type(self, mime_type: impl Into<String>) -> Self

Sets the MIME type describing the stream’s payload.

Source

pub fn with_name(self, name: impl Into<String>) -> Self

Sets a human-readable name for the stream (e.g. a file name).

Source

pub fn with_total_length(self, total_length: u64) -> Self

Sets the total byte length of the payload, when known ahead of time.

Source

pub fn with_compress(self, compress: bool) -> Self

Sets whether to deflate-raw compress the payload when all recipients support it. Defaults to true (compression opt-out).

Source

pub fn with_sender_identity( self, identity: impl Into<ParticipantIdentity>, ) -> Self

Sets the identity the stream’s packets are attributed to. Only participants with the appropriate permission (e.g. agents) may impersonate another identity.

Trait Implementations§

Source§

impl Clone for StreamByteOptions

Source§

fn clone(&self) -> StreamByteOptions

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for StreamByteOptions

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for StreamByteOptions

Source§

impl PartialEq for StreamByteOptions

Source§

fn eq(&self, other: &StreamByteOptions) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for StreamByteOptions

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.