pub struct GeoNode {
pub id: u32,
pub name: String,
pub node_type: GeoNodeType,
pub inputs: Vec<GeoNodeSocket>,
pub outputs: Vec<GeoNodeSocket>,
pub position: [f32; 2],
}Fields§
§id: u32§name: String§node_type: GeoNodeType§inputs: Vec<GeoNodeSocket>§outputs: Vec<GeoNodeSocket>§position: [f32; 2]Auto Trait Implementations§
impl Freeze for GeoNode
impl RefUnwindSafe for GeoNode
impl Send for GeoNode
impl Sync for GeoNode
impl Unpin for GeoNode
impl UnsafeUnpin for GeoNode
impl UnwindSafe for GeoNode
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