pub enum ParameterName<S> {
Other(S),
}
Variants§
Other(S)
Implementations§
Source§impl<S> ParameterName<S>
impl<S> ParameterName<S>
Source§impl<S> ParameterName<S>
impl<S> ParameterName<S>
pub fn as_io_slices(&self) -> impl Iterator<Item = IoSlice<'_>>
Trait Implementations§
Source§impl<S: Clone> Clone for ParameterName<S>
impl<S: Clone> Clone for ParameterName<S>
Source§fn clone(&self) -> ParameterName<S>
fn clone(&self) -> ParameterName<S>
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<S: Debug> Debug for ParameterName<S>
impl<S: Debug> Debug for ParameterName<S>
Source§impl<S: PartialEq> PartialEq for ParameterName<S>
impl<S: PartialEq> PartialEq for ParameterName<S>
impl<S: Copy> Copy for ParameterName<S>
impl<S: Eq> Eq for ParameterName<S>
impl<S> StructuralPartialEq for ParameterName<S>
Auto Trait Implementations§
impl<S> Freeze for ParameterName<S>where
S: Freeze,
impl<S> RefUnwindSafe for ParameterName<S>where
S: RefUnwindSafe,
impl<S> Send for ParameterName<S>where
S: Send,
impl<S> Sync for ParameterName<S>where
S: Sync,
impl<S> Unpin for ParameterName<S>where
S: Unpin,
impl<S> UnwindSafe for ParameterName<S>where
S: UnwindSafe,
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