pub enum OutputBranch {
Bool(String, Vec<bool>),
I32(String, Vec<i32>),
U32(String, Vec<u32>),
U64(String, Vec<u64>),
F32(String, Vec<f32>),
VecF32(String, Vec<Vec<f32>>),
}Expand description
One selected output column for the Events skim tree.
Variants§
Bool(String, Vec<bool>)
I32(String, Vec<i32>)
U32(String, Vec<u32>)
U64(String, Vec<u64>)
F32(String, Vec<f32>)
VecF32(String, Vec<Vec<f32>>)
Implementations§
Source§impl OutputBranch
impl OutputBranch
pub fn bool(name: impl Into<String>, values: Vec<bool>) -> Self
pub fn i32(name: impl Into<String>, values: Vec<i32>) -> Self
pub fn u32(name: impl Into<String>, values: Vec<u32>) -> Self
pub fn u64(name: impl Into<String>, values: Vec<u64>) -> Self
pub fn f32(name: impl Into<String>, values: Vec<f32>) -> Self
pub fn vec_f32(name: impl Into<String>, values: Vec<Vec<f32>>) -> Self
Trait Implementations§
Source§impl Clone for OutputBranch
impl Clone for OutputBranch
Source§fn clone(&self) -> OutputBranch
fn clone(&self) -> OutputBranch
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 Debug for OutputBranch
impl Debug for OutputBranch
Source§impl PartialEq for OutputBranch
impl PartialEq for OutputBranch
impl StructuralPartialEq for OutputBranch
Auto Trait Implementations§
impl Freeze for OutputBranch
impl RefUnwindSafe for OutputBranch
impl Send for OutputBranch
impl Sync for OutputBranch
impl Unpin for OutputBranch
impl UnsafeUnpin for OutputBranch
impl UnwindSafe for OutputBranch
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