pub struct RestartIceResponseRef<'a>(/* private fields */);
Expand description
Reference to a deserialized RestartIceResponse.
Implementations§
Source§impl<'a> RestartIceResponseRef<'a>
impl<'a> RestartIceResponseRef<'a>
Sourcepub fn username_fragment(&self) -> Result<&'a str>
pub fn username_fragment(&self) -> Result<&'a str>
Getter for the username_fragment
field.
Sourcepub fn password(&self) -> Result<&'a str>
pub fn password(&self) -> Result<&'a str>
Getter for the password
field.
Sourcepub fn ice_lite(&self) -> Result<bool>
pub fn ice_lite(&self) -> Result<bool>
Getter for the ice_lite
field.
Trait Implementations§
Source§impl<'a> Clone for RestartIceResponseRef<'a>
impl<'a> Clone for RestartIceResponseRef<'a>
Source§fn clone(&self) -> RestartIceResponseRef<'a>
fn clone(&self) -> RestartIceResponseRef<'a>
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<'a> Debug for RestartIceResponseRef<'a>
impl<'a> Debug for RestartIceResponseRef<'a>
Source§impl<'a> ReadAsRoot<'a> for RestartIceResponseRef<'a>
impl<'a> ReadAsRoot<'a> for RestartIceResponseRef<'a>
Source§impl<'a> TryFrom<RestartIceResponseRef<'a>> for RestartIceResponse
impl<'a> TryFrom<RestartIceResponseRef<'a>> for RestartIceResponse
impl<'a> Copy for RestartIceResponseRef<'a>
Auto Trait Implementations§
impl<'a> Freeze for RestartIceResponseRef<'a>
impl<'a> RefUnwindSafe for RestartIceResponseRef<'a>
impl<'a> Send for RestartIceResponseRef<'a>
impl<'a> Sync for RestartIceResponseRef<'a>
impl<'a> Unpin for RestartIceResponseRef<'a>
impl<'a> UnwindSafe for RestartIceResponseRef<'a>
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