pub struct GeoNodeLink {
pub from_node: u32,
pub from_socket: usize,
pub to_node: u32,
pub to_socket: usize,
}Fields§
§from_node: u32§from_socket: usize§to_node: u32§to_socket: usizeAuto Trait Implementations§
impl Freeze for GeoNodeLink
impl RefUnwindSafe for GeoNodeLink
impl Send for GeoNodeLink
impl Sync for GeoNodeLink
impl Unpin for GeoNodeLink
impl UnsafeUnpin for GeoNodeLink
impl UnwindSafe for GeoNodeLink
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> 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