pub struct NodePin {
pub id: String,
pub name: String,
pub pin_type: PinType,
pub is_input: bool,
pub connected_to: Option<String>,
pub default_value: String,
}Fields§
§id: String§name: String§pin_type: PinType§is_input: bool§connected_to: Option<String>§default_value: StringImplementations§
Trait Implementations§
impl StructuralPartialEq for NodePin
Auto Trait Implementations§
impl Freeze for NodePin
impl RefUnwindSafe for NodePin
impl Send for NodePin
impl Sync for NodePin
impl Unpin for NodePin
impl UnwindSafe for NodePin
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