pub struct IceParameters {
pub username_fragment: String,
pub password: String,
pub ice_lite: Option<bool>,
}
Expand description
ICE parameters.
Fields§
§username_fragment: String
ICE username fragment.
password: String
ICE password.
ice_lite: Option<bool>
ICE Lite.
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
impl Eq for IceParameters
impl StructuralPartialEq 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