pub struct SplitUrlDataNodeVisitor {
pub parent_url_data_nodes: Vec<(DataSpec, Vec<u32>)>,
}Fields§
§parent_url_data_nodes: Vec<(DataSpec, Vec<u32>)>Implementations§
Trait Implementations§
Source§impl Clone for SplitUrlDataNodeVisitor
impl Clone for SplitUrlDataNodeVisitor
Source§fn clone(&self) -> SplitUrlDataNodeVisitor
fn clone(&self) -> SplitUrlDataNodeVisitor
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 SplitUrlDataNodeVisitor
impl Debug for SplitUrlDataNodeVisitor
Source§impl Default for SplitUrlDataNodeVisitor
impl Default for SplitUrlDataNodeVisitor
Source§fn default() -> SplitUrlDataNodeVisitor
fn default() -> SplitUrlDataNodeVisitor
Returns the “default value” for a type. Read more
Source§impl MutChartVisitor for SplitUrlDataNodeVisitor
impl MutChartVisitor for SplitUrlDataNodeVisitor
fn visit_data(&mut self, data: &mut DataSpec, scope: &[u32]) -> Result<()>
fn visit_chart(&mut self, _chart: &mut ChartSpec) -> Result<()>
fn visit_signal( &mut self, _signal: &mut SignalSpec, _scope: &[u32], ) -> Result<()>
fn visit_scale(&mut self, _scale: &mut ScaleSpec, _scope: &[u32]) -> Result<()>
fn visit_projection( &mut self, _projection: &mut ProjectionSpec, _scope: &[u32], ) -> Result<()>
fn visit_axis(&mut self, _axis: &mut AxisSpec, _scope: &[u32]) -> Result<()>
fn visit_non_group_mark( &mut self, _mark: &mut MarkSpec, _scope: &[u32], ) -> Result<()>
fn visit_group_mark( &mut self, _mark: &mut MarkSpec, _scope: &[u32], ) -> Result<()>
Auto Trait Implementations§
impl Freeze for SplitUrlDataNodeVisitor
impl RefUnwindSafe for SplitUrlDataNodeVisitor
impl Send for SplitUrlDataNodeVisitor
impl Sync for SplitUrlDataNodeVisitor
impl Unpin for SplitUrlDataNodeVisitor
impl UnwindSafe for SplitUrlDataNodeVisitor
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> 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