pub enum CustomVendor {
Owned(Box<String>),
Static(&'static str),
}
Expand description
A string for a Vendor::Custom
that can either be used in const
contexts or hold dynamic strings.
An owned String
. This supports the general case.
A static str
, so that CustomVendor
can be constructed in const
contexts.
Performs copy-assignment from source
. Read more
Formats the value using the given formatter. Read more
fn eq(&self, other: &Self) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
This method tests for !=
.
impl<T> Any for T where
T: 'static + ?Sized,
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.