pub struct GraphLinkResponse {
pub edge: GraphEdge,
}Expand description
Response from POST /v1/memories/{id}/links.
Fields§
§edge: GraphEdgeThe newly created edge.
Trait Implementations§
Source§impl Clone for GraphLinkResponse
impl Clone for GraphLinkResponse
Source§fn clone(&self) -> GraphLinkResponse
fn clone(&self) -> GraphLinkResponse
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 Debug for GraphLinkResponse
impl Debug for GraphLinkResponse
Source§impl<'de> Deserialize<'de> for GraphLinkResponse
impl<'de> Deserialize<'de> for GraphLinkResponse
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 GraphLinkResponse
impl RefUnwindSafe for GraphLinkResponse
impl Send for GraphLinkResponse
impl Sync for GraphLinkResponse
impl Unpin for GraphLinkResponse
impl UnsafeUnpin for GraphLinkResponse
impl UnwindSafe for GraphLinkResponse
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