pub struct SilentWithProgressSwitch(/* private fields */);Implementations§
Source§impl SilentWithProgressSwitch
impl SilentWithProgressSwitch
pub fn iter(&self) -> Iter<'_, CompactString>
Trait Implementations§
Source§impl Clone for SilentWithProgressSwitch
impl Clone for SilentWithProgressSwitch
Source§fn clone(&self) -> SilentWithProgressSwitch
fn clone(&self) -> SilentWithProgressSwitch
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 SilentWithProgressSwitch
impl Debug for SilentWithProgressSwitch
Source§impl Deref for SilentWithProgressSwitch
impl Deref for SilentWithProgressSwitch
Source§impl DerefMut for SilentWithProgressSwitch
impl DerefMut for SilentWithProgressSwitch
Source§impl Display for SilentWithProgressSwitch
impl Display for SilentWithProgressSwitch
Source§impl FromStr for SilentWithProgressSwitch
impl FromStr for SilentWithProgressSwitch
Source§impl Hash for SilentWithProgressSwitch
impl Hash for SilentWithProgressSwitch
Source§impl<'switch> IntoIterator for &'switch SilentWithProgressSwitch
impl<'switch> IntoIterator for &'switch SilentWithProgressSwitch
Source§impl Ord for SilentWithProgressSwitch
impl Ord for SilentWithProgressSwitch
Source§fn cmp(&self, other: &SilentWithProgressSwitch) -> Ordering
fn cmp(&self, other: &SilentWithProgressSwitch) -> 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 SilentWithProgressSwitch
impl PartialEq for SilentWithProgressSwitch
Source§impl PartialOrd for SilentWithProgressSwitch
impl PartialOrd for SilentWithProgressSwitch
impl Eq for SilentWithProgressSwitch
impl StructuralPartialEq for SilentWithProgressSwitch
Auto Trait Implementations§
impl Freeze for SilentWithProgressSwitch
impl RefUnwindSafe for SilentWithProgressSwitch
impl Send for SilentWithProgressSwitch
impl Sync for SilentWithProgressSwitch
impl Unpin for SilentWithProgressSwitch
impl UnwindSafe for SilentWithProgressSwitch
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<I, C> CompactStringExt for C
impl<I, C> CompactStringExt for C
Source§fn concat_compact(self) -> CompactString
fn concat_compact(self) -> CompactString
Concatenates all the items of a collection into a
CompactString Read moreSource§fn join_compact<S>(self, separator: S) -> CompactString
fn join_compact<S>(self, separator: S) -> CompactString
Joins all the items of a collection, placing a separator between them, forming a
CompactString Read moreSource§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 moreSource§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
Source§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of
ToCompactString::to_compact_string() Read moreSource§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString. Read more