pub struct DFDesc {
pub default_deco: (Decorator, Decorator),
pub deco: Vec<(Option<Decorator>, Option<Decorator>)>,
pub schema: Schema,
}
Expand description
DFDesc
Fields§
§default_deco: (Decorator, Decorator)
default deco
deco: Vec<(Option<Decorator>, Option<Decorator>)>
deco (head, body=column)
schema: Schema
schema
Implementations§
Source§impl DFDesc
DFDesc
impl DFDesc
DFDesc
Sourcepub fn all_from(self, deco: Vec<(Option<Decorator>, Option<Decorator>)>) -> Self
pub fn all_from(self, deco: Vec<(Option<Decorator>, Option<Decorator>)>) -> Self
all from (pipeline)
Sourcepub fn all_default(self) -> Self
pub fn all_default(self) -> Self
all default (pipeline)
Sourcepub fn push(&mut self, deco: (Option<Decorator>, Option<Decorator>))
pub fn push(&mut self, deco: (Option<Decorator>, Option<Decorator>))
push deco (head, body=column)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DFDesc
impl RefUnwindSafe for DFDesc
impl Send for DFDesc
impl Sync for DFDesc
impl Unpin for DFDesc
impl UnwindSafe for DFDesc
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more