[][src]Struct aeron_rs::channel_uri_string_builder::ChannelUriStringBuilder

pub struct ChannelUriStringBuilder { /* fields omitted */ }

Methods

impl ChannelUriStringBuilder[src]

pub fn clear(&mut self)[src]

pub fn prefix(&mut self, new_prefix: &str) -> Result<&mut Self, AeronError>[src]

pub fn reset_prefix(&mut self) -> &mut Self[src]

pub fn media(&mut self, media: &str) -> Result<&mut Self, AeronError>[src]

pub fn endpoint(&mut self, endpoint: &str) -> &mut Self[src]

pub fn network_interface(&mut self, network_interface: &str) -> &mut Self[src]

pub fn control_endpoint(&mut self, control_endpoint: &str) -> &mut Self[src]

pub fn control_mode(
    &mut self,
    control_mode: &str
) -> Result<&mut Self, AeronError>
[src]

pub fn tags(&mut self, tags: &str) -> &mut Self[src]

pub fn alias(&mut self, alias: &str) -> &mut Self[src]

pub fn congestion_control(&mut self, congestrion_control: &str) -> &mut Self[src]

pub fn reliable(&mut self, reliable: bool) -> &mut Self[src]

pub fn reset_reliable(&mut self) -> &mut Self[src]

pub fn ttl(&mut self, ttl: u8) -> &mut Self[src]

pub fn mtu(&mut self, mtu: u32) -> Result<&mut Self, AeronError>[src]

pub fn term_length(&mut self, term_length: i32) -> Result<&mut Self, AeronError>[src]

pub fn initial_term_id(&mut self, initial_term_id: i32) -> &mut Self[src]

pub fn term_id(&mut self, term_id: i32) -> &mut Self[src]

pub fn term_offset(&mut self, term_offset: u32) -> Result<&mut Self, AeronError>[src]

pub fn session_id(&mut self, session_id: i32) -> &mut Self[src]

pub fn linger(&mut self, linger_ns: i64) -> Result<&mut Self, AeronError>[src]

pub fn sparse(&mut self, sparse: bool) -> &mut Self[src]

pub fn eos(&mut self, eos: bool) -> &mut Self[src]

pub fn tether(&mut self, tether: bool) -> &mut Self[src]

pub fn group(&mut self, group: bool) -> &mut Self[src]

pub fn rejoin(&mut self, rejoin: bool) -> &mut Self[src]

pub fn reset_rejoin(&mut self) -> &mut Self[src]

pub fn is_session_tagged(&mut self, is_session_tagged: bool) -> &mut Self[src]

pub fn build(&self) -> String[src]

Trait Implementations

impl Debug for ChannelUriStringBuilder[src]

impl Default for ChannelUriStringBuilder[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.