pub struct GetLinksInput<T>{
pub base: AnyLinkableHash,
pub target: AnyLinkableHash,
pub link_type_filter: LinkTypeFilter,
pub tag: Option<LinkTag>,
pub link_type: Option<T>,
}Expand description
Input required for calling the hdk::prelude::get_links method
Fields§
§base: AnyLinkableHash§target: AnyLinkableHash§link_type_filter: LinkTypeFilter§tag: Option<LinkTag>§link_type: Option<T>Trait Implementations§
Source§impl<T> Clone for GetLinksInput<T>
impl<T> Clone for GetLinksInput<T>
Source§fn clone(&self) -> GetLinksInput<T>
fn clone(&self) -> GetLinksInput<T>
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<T> Debug for GetLinksInput<T>
impl<T> Debug for GetLinksInput<T>
Source§impl<'de, T> Deserialize<'de> for GetLinksInput<T>
impl<'de, T> Deserialize<'de> for GetLinksInput<T>
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
Source§impl<T> Serialize for GetLinksInput<T>
impl<T> Serialize for GetLinksInput<T>
Source§impl<T> TryFrom<GetLinksInputBuffer> for GetLinksInput<T>
impl<T> TryFrom<GetLinksInputBuffer> for GetLinksInput<T>
Auto Trait Implementations§
impl<T> Freeze for GetLinksInput<T>where
T: Freeze,
impl<T> RefUnwindSafe for GetLinksInput<T>where
T: RefUnwindSafe,
impl<T> Send for GetLinksInput<T>where
T: Send,
impl<T> Sync for GetLinksInput<T>where
T: Sync,
impl<T> Unpin for GetLinksInput<T>where
T: Unpin,
impl<T> UnwindSafe for GetLinksInput<T>where
T: UnwindSafe,
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