pub struct Col2<T1, T2>{ /* private fields */ }
Implementations§
Source§impl<T1, T2> Col2<T1, T2>
impl<T1, T2> Col2<T1, T2>
pub fn new() -> Self
pub fn set_header(&mut self, header: Vec<&'static str>)
pub fn header(&self) -> &Vec<&'static str>
pub fn from_cols(col_1: T1, col_2: T2) -> Self
pub fn c1(&self) -> &T1
pub fn c1_mut(&mut self) -> &mut T1
pub fn c2(&self) -> &T2
pub fn c2_mut(&mut self) -> &mut T2
Trait Implementations§
Auto Trait Implementations§
impl<T1, T2> Freeze for Col2<T1, T2>
impl<T1, T2> RefUnwindSafe for Col2<T1, T2>where
T1: RefUnwindSafe,
T2: RefUnwindSafe,
impl<T1, T2> Send for Col2<T1, T2>
impl<T1, T2> Sync for Col2<T1, T2>
impl<T1, T2> Unpin for Col2<T1, T2>
impl<T1, T2> UnwindSafe for Col2<T1, T2>where
T1: UnwindSafe,
T2: 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