Struct xmpp_parsers::jingle_s5b::Transport
source · pub struct Transport {
pub sid: StreamId,
pub dstaddr: Option<String>,
pub mode: Mode,
pub payload: TransportPayload,
}
Expand description
Describes a Jingle transport using a direct or proxied connection.
Fields§
§sid: StreamId
The stream identifier for this transport.
dstaddr: Option<String>
The destination address.
mode: Mode
The mode to be used for the transfer.
payload: TransportPayload
The payload of this transport.
Implementations§
source§impl Transport
impl Transport
sourcepub fn with_dstaddr(self, dstaddr: String) -> Transport
pub fn with_dstaddr(self, dstaddr: String) -> Transport
Sets the destination address of this transport.
sourcepub fn with_payload(self, payload: TransportPayload) -> Transport
pub fn with_payload(self, payload: TransportPayload) -> Transport
Sets the payload of this transport.
Trait Implementations§
source§impl From<Transport> for Transport
impl From<Transport> for Transport
source§fn from(transport: Socks5Transport) -> Transport
fn from(transport: Socks5Transport) -> Transport
Converts to this type from the input type.
source§impl PartialEq for Transport
impl PartialEq for Transport
source§impl TryFrom<Element> for Transport
impl TryFrom<Element> for Transport
§type Error = FromElementError
type Error = FromElementError
The type returned in the event of a conversion error.
impl StructuralPartialEq for Transport
Auto Trait Implementations§
impl Freeze for Transport
impl RefUnwindSafe for Transport
impl Send for Transport
impl Sync for Transport
impl Unpin for Transport
impl UnwindSafe for Transport
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more