pub struct Set<T: Eq>(_);Expand description
Implementations
Trait Implementations
sourceimpl<'de, T: Eq + Deserialize<'de>> Deserialize<'de> for Set<T>
impl<'de, T: Eq + Deserialize<'de>> Deserialize<'de> for Set<T>
sourcefn deserialize<D>(d: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
fn deserialize<D>(d: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl<T: Eq, S: Into<T>> FromIterator<S> for Set<T>
impl<T: Eq, S: Into<T>> FromIterator<S> for Set<T>
sourcefn from_iter<I>(i: I) -> Self where
I: IntoIterator<Item = S>,
fn from_iter<I>(i: I) -> Self where
I: IntoIterator<Item = S>,
Creates a value from an iterator. Read more
sourceimpl<T: Eq> IntoIterator for Set<T>
impl<T: Eq> IntoIterator for Set<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for Set<T> where
T: RefUnwindSafe,
impl<T> Send for Set<T> where
T: Send,
impl<T> Sync for Set<T> where
T: Sync,
impl<T> Unpin for Set<T> where
T: Unpin,
impl<T> UnwindSafe for Set<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToHex for T where
T: AsRef<[u8]>,
impl<T> ToHex for T where
T: AsRef<[u8]>,
sourcefn encode_hex<U>(&self) -> U where
U: FromIterator<char>,
fn encode_hex<U>(&self) -> U where
U: FromIterator<char>,
Encode the hex strict representing self into the result. Lower case
letters are used (e.g. f9b4ca) Read more
sourcefn encode_hex_upper<U>(&self) -> U where
U: FromIterator<char>,
fn encode_hex_upper<U>(&self) -> U where
U: FromIterator<char>,
Encode the hex strict representing self into the result. Upper case
letters are used (e.g. F9B4CA) Read more