pub struct OrientedEdge {
pub name: String,
pub edge_element: EdgeRef,
pub orientation: bool,
}Fields§
§name: String§edge_element: EdgeRef§orientation: boolTrait Implementations§
Source§impl Clone for OrientedEdge
impl Clone for OrientedEdge
Source§fn clone(&self) -> OrientedEdge
fn clone(&self) -> OrientedEdge
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OrientedEdge
impl Debug for OrientedEdge
Source§impl PartialEq for OrientedEdge
impl PartialEq for OrientedEdge
Source§fn eq(&self, other: &OrientedEdge) -> bool
fn eq(&self, other: &OrientedEdge) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OrientedEdge
Auto Trait Implementations§
impl Freeze for OrientedEdge
impl RefUnwindSafe for OrientedEdge
impl Send for OrientedEdge
impl Sync for OrientedEdge
impl Unpin for OrientedEdge
impl UnsafeUnpin for OrientedEdge
impl UnwindSafe for OrientedEdge
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