pub struct OutputsByTerm<T> {
pub short: T,
pub long: T,
}Fields§
§short: T§long: TImplementations§
Source§impl<T> OutputsByTerm<T>
impl<T> OutputsByTerm<T>
pub fn as_mut_vec(&mut self) -> [&mut T; 2]
Source§impl<T> OutputsByTerm<(OutputFilter, T)>
impl<T> OutputsByTerm<(OutputFilter, T)>
Trait Implementations§
Source§impl<T: Clone> Clone for OutputsByTerm<T>
impl<T: Clone> Clone for OutputsByTerm<T>
Source§fn clone(&self) -> OutputsByTerm<T>
fn clone(&self) -> OutputsByTerm<T>
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<T: Default> Default for OutputsByTerm<T>
impl<T: Default> Default for OutputsByTerm<T>
Source§fn default() -> OutputsByTerm<T>
fn default() -> OutputsByTerm<T>
Returns the “default value” for a type. Read more
Source§impl<T> From<OutputsByTerm<T>> for OutputsByTerm<(OutputFilter, T)>
impl<T> From<OutputsByTerm<T>> for OutputsByTerm<(OutputFilter, T)>
Source§fn from(value: OutputsByTerm<T>) -> Self
fn from(value: OutputsByTerm<T>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<T> Freeze for OutputsByTerm<T>where
T: Freeze,
impl<T> RefUnwindSafe for OutputsByTerm<T>where
T: RefUnwindSafe,
impl<T> Send for OutputsByTerm<T>where
T: Send,
impl<T> Sync for OutputsByTerm<T>where
T: Sync,
impl<T> Unpin for OutputsByTerm<T>where
T: Unpin,
impl<T> UnwindSafe for OutputsByTerm<T>where
T: 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