pub struct IceParameters {
pub username_fragment: String,
pub password: String,
pub ice_lite: bool,
}
Expand description
The table IceParameters
in the namespace FBS.WebRtcTransport
Generated from these locations:
- Table
IceParameters
in the filefbs/webRtcTransport.fbs:61
Fields§
§username_fragment: String
The field username_fragment
in the table IceParameters
password: String
The field password
in the table IceParameters
ice_lite: bool
The field ice_lite
in the table IceParameters
Implementations§
Source§impl IceParameters
impl IceParameters
Sourcepub fn builder() -> IceParametersBuilder<()>
pub fn builder() -> IceParametersBuilder<()>
Creates a IceParametersBuilder for serializing an instance of this table.
pub fn create( builder: &mut Builder, field_username_fragment: impl WriteAs<Offset<str>>, field_password: impl WriteAs<Offset<str>>, field_ice_lite: impl WriteAsDefault<bool, bool>, ) -> Offset<Self>
Trait Implementations§
Source§impl Clone for IceParameters
impl Clone for IceParameters
Source§fn clone(&self) -> IceParameters
fn clone(&self) -> IceParameters
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for IceParameters
impl Debug for IceParameters
Source§impl<'de> Deserialize<'de> for IceParameters
impl<'de> Deserialize<'de> for IceParameters
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for IceParameters
impl Hash for IceParameters
Source§impl Ord for IceParameters
impl Ord for IceParameters
Source§fn cmp(&self, other: &IceParameters) -> Ordering
fn cmp(&self, other: &IceParameters) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IceParameters
impl PartialEq for IceParameters
Source§impl PartialOrd for IceParameters
impl PartialOrd for IceParameters
Source§impl Serialize for IceParameters
impl Serialize for IceParameters
Source§impl<'a> TryFrom<IceParametersRef<'a>> for IceParameters
impl<'a> TryFrom<IceParametersRef<'a>> for IceParameters
impl Eq for IceParameters
impl StructuralPartialEq for IceParameters
impl VectorWrite<Offset<IceParameters>> for IceParameters
impl WriteAs<Offset<IceParameters>> for IceParameters
impl WriteAsOffset<IceParameters> for IceParameters
impl<T0: WriteAs<Offset<str>>, T1: WriteAs<Offset<str>>, T2: WriteAsDefault<bool, bool>> WriteAsOffset<IceParameters> for IceParametersBuilder<(T0, T1, T2)>
impl WriteAsOptional<Offset<IceParameters>> for IceParameters
Auto Trait Implementations§
impl Freeze for IceParameters
impl RefUnwindSafe for IceParameters
impl Send for IceParameters
impl Sync for IceParameters
impl Unpin for IceParameters
impl UnwindSafe for IceParameters
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