pub struct CroKey(_);Expand description
A zero-cost wrapper type implementing Display and FromStr.
When the “serde” feature is enabled, it also implements
Deserialize which is handy to read whole configuration
files with Serde.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for CroKey
impl<'de> Deserialize<'de> for CroKey
sourcefn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl FromStr for CroKey
impl FromStr for CroKey
type Err = ParseKeyError
type Err = ParseKeyError
The associated error which can be returned from parsing.
impl Copy for CroKey
impl Eq for CroKey
impl StructuralEq for CroKey
impl StructuralPartialEq for CroKey
Auto Trait Implementations
impl RefUnwindSafe for CroKey
impl Send for CroKey
impl Sync for CroKey
impl Unpin for CroKey
impl UnwindSafe for CroKey
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more