pub enum ContainsAllSymbolsOutcome<'a> {
Ok,
MissingSymbols(BTreeSet<&'a str>),
}
Variants§
Trait Implementations§
Source§impl<'a> Debug for ContainsAllSymbolsOutcome<'a>
impl<'a> Debug for ContainsAllSymbolsOutcome<'a>
Source§impl<'a> PartialEq for ContainsAllSymbolsOutcome<'a>
impl<'a> PartialEq for ContainsAllSymbolsOutcome<'a>
Source§fn eq(&self, other: &ContainsAllSymbolsOutcome<'a>) -> bool
fn eq(&self, other: &ContainsAllSymbolsOutcome<'a>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl<'a> StructuralPartialEq for ContainsAllSymbolsOutcome<'a>
Auto Trait Implementations§
impl<'a> Freeze for ContainsAllSymbolsOutcome<'a>
impl<'a> RefUnwindSafe for ContainsAllSymbolsOutcome<'a>
impl<'a> Send for ContainsAllSymbolsOutcome<'a>
impl<'a> Sync for ContainsAllSymbolsOutcome<'a>
impl<'a> Unpin for ContainsAllSymbolsOutcome<'a>
impl<'a> UnwindSafe for ContainsAllSymbolsOutcome<'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
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 32 bytes
Size for each variant:
Ok
: 0 bytesMissingSymbols
: 24 bytes