pub struct IceParametersRef<'a>(/* private fields */);
Expand description
Reference to a deserialized IceParameters.
Implementations§
Source§impl<'a> IceParametersRef<'a>
impl<'a> IceParametersRef<'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 IceParametersRef<'a>
impl<'a> Clone for IceParametersRef<'a>
Source§fn clone(&self) -> IceParametersRef<'a>
fn clone(&self) -> IceParametersRef<'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 IceParametersRef<'a>
impl<'a> Debug for IceParametersRef<'a>
Source§impl<'a> ReadAsRoot<'a> for IceParametersRef<'a>
impl<'a> ReadAsRoot<'a> for IceParametersRef<'a>
Source§impl<'a> TryFrom<IceParametersRef<'a>> for IceParameters
impl<'a> TryFrom<IceParametersRef<'a>> for IceParameters
impl<'a> Copy for IceParametersRef<'a>
Auto Trait Implementations§
impl<'a> Freeze for IceParametersRef<'a>
impl<'a> RefUnwindSafe for IceParametersRef<'a>
impl<'a> Send for IceParametersRef<'a>
impl<'a> Sync for IceParametersRef<'a>
impl<'a> Unpin for IceParametersRef<'a>
impl<'a> UnwindSafe for IceParametersRef<'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