pub struct WireEdgeGroupOptions {
pub name: Option<String>,
pub edges: Vec<WireEdgeGroupEdge>,
}Expand description
WireEdgeGroupOptions data container.
Fields§
§name: Option<String>name field for name.
edges: Vec<WireEdgeGroupEdge>edges field for edges.
Implementations§
Source§impl WireEdgeGroupOptions
impl WireEdgeGroupOptions
Sourcepub fn new(edges: Vec<WireEdgeGroupEdge>) -> Self
pub fn new(edges: Vec<WireEdgeGroupEdge>) -> Self
Creates or computes new.
Trait Implementations§
Source§impl Clone for WireEdgeGroupOptions
impl Clone for WireEdgeGroupOptions
Source§fn clone(&self) -> WireEdgeGroupOptions
fn clone(&self) -> WireEdgeGroupOptions
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 WireEdgeGroupOptions
impl !RefUnwindSafe for WireEdgeGroupOptions
impl !Send for WireEdgeGroupOptions
impl !Sync for WireEdgeGroupOptions
impl Unpin for WireEdgeGroupOptions
impl UnsafeUnpin for WireEdgeGroupOptions
impl !UnwindSafe for WireEdgeGroupOptions
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