pub struct LinkObject {
pub name: Option<LinkObjectName>,
pub summary: Option<LinkObjectSummary>,
pub method: Option<LinkObjectMethod>,
pub description: Option<LinkObjectDescription>,
pub params: Option<LinkObjectParams>,
pub server: Option<LinkObjectServer>,
}
Fields§
§name: Option<LinkObjectName>
§summary: Option<LinkObjectSummary>
§method: Option<LinkObjectMethod>
§description: Option<LinkObjectDescription>
§params: Option<LinkObjectParams>
§server: Option<LinkObjectServer>
Trait Implementations§
Source§impl Clone for LinkObject
impl Clone for LinkObject
Source§fn clone(&self) -> LinkObject
fn clone(&self) -> LinkObject
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for LinkObject
impl<'de> Deserialize<'de> for LinkObject
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 LinkObject
impl RefUnwindSafe for LinkObject
impl Send for LinkObject
impl Sync for LinkObject
impl Unpin for LinkObject
impl UnwindSafe for LinkObject
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