pub struct StatsModelsEdge {
pub source: String,
pub destination: String,
pub filter: StringEntities,
}Expand description
A directed edge between two nodes in the stats model graph.
Edges define data flow from a source node to a destination node, optionally filtering which contrasts/outputs are passed through based on entity values.
Fields§
§source: String§destination: String§filter: StringEntitiesTrait Implementations§
Source§impl Clone for StatsModelsEdge
impl Clone for StatsModelsEdge
Source§fn clone(&self) -> StatsModelsEdge
fn clone(&self) -> StatsModelsEdge
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 moreAuto Trait Implementations§
impl Freeze for StatsModelsEdge
impl RefUnwindSafe for StatsModelsEdge
impl Send for StatsModelsEdge
impl Sync for StatsModelsEdge
impl Unpin for StatsModelsEdge
impl UnsafeUnpin for StatsModelsEdge
impl UnwindSafe for StatsModelsEdge
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