pub struct NodeMember {
pub id: u64,
pub role: String,
pub node: VectorPoint<MValue>,
}Expand description
Node Member
Fields§
§id: u64The node’s id
role: StringThe role of the node relative to the relation
node: VectorPoint<MValue>The node geometry
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NodeMember
impl RefUnwindSafe for NodeMember
impl Send for NodeMember
impl Sync for NodeMember
impl Unpin for NodeMember
impl UnwindSafe for NodeMember
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§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> 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