pub struct VarbitLoader(/* private fields */);Expand description
Loads all varbit definitions from the current cache.
Implementations§
Source§impl VarbitLoader
impl VarbitLoader
Source§impl VarbitLoader
impl VarbitLoader
pub fn iter(&self) -> Iter<'_, u16, VarbitDefinition>
pub fn iter_mut(&mut self) -> IterMut<'_, u16, VarbitDefinition>
Trait Implementations§
Source§impl Clone for VarbitLoader
impl Clone for VarbitLoader
Source§fn clone(&self) -> VarbitLoader
fn clone(&self) -> VarbitLoader
Returns a duplicate 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 VarbitLoader
impl Debug for VarbitLoader
Source§impl Default for VarbitLoader
impl Default for VarbitLoader
Source§fn default() -> VarbitLoader
fn default() -> VarbitLoader
Returns the “default value” for a type. Read more
Source§impl<'a> IntoIterator for &'a VarbitLoader
impl<'a> IntoIterator for &'a VarbitLoader
Source§impl<'a> IntoIterator for &'a mut VarbitLoader
impl<'a> IntoIterator for &'a mut VarbitLoader
Source§impl IntoIterator for VarbitLoader
impl IntoIterator for VarbitLoader
Source§impl PartialEq for VarbitLoader
impl PartialEq for VarbitLoader
impl Eq for VarbitLoader
impl StructuralPartialEq for VarbitLoader
Auto Trait Implementations§
impl Freeze for VarbitLoader
impl RefUnwindSafe for VarbitLoader
impl Send for VarbitLoader
impl Sync for VarbitLoader
impl Unpin for VarbitLoader
impl UnwindSafe for VarbitLoader
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more