pub struct LinkData {
pub id: Option<String>,
pub source_block_uuid: String,
pub target_block_uuid: String,
pub source_block_pin_name: String,
pub target_block_pin_name: String,
}
Fields§
§id: Option<String>
§source_block_uuid: String
§target_block_uuid: String
§source_block_pin_name: String
§target_block_pin_name: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LinkData
impl<'de> Deserialize<'de> for LinkData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for LinkData
impl RefUnwindSafe for LinkData
impl Send for LinkData
impl Sync for LinkData
impl Unpin for LinkData
impl UnwindSafe for LinkData
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