pub struct CodeGraphContextEdgeExport {
pub source: BlockId,
pub source_short_id: String,
pub target: BlockId,
pub target_short_id: String,
pub relation: String,
pub multiplicity: usize,
}Fields§
§source: BlockId§source_short_id: String§target: BlockId§target_short_id: String§relation: String§multiplicity: usizeTrait Implementations§
Source§impl Clone for CodeGraphContextEdgeExport
impl Clone for CodeGraphContextEdgeExport
Source§fn clone(&self) -> CodeGraphContextEdgeExport
fn clone(&self) -> CodeGraphContextEdgeExport
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 CodeGraphContextEdgeExport
impl Debug for CodeGraphContextEdgeExport
Source§impl<'de> Deserialize<'de> for CodeGraphContextEdgeExport
impl<'de> Deserialize<'de> for CodeGraphContextEdgeExport
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CodeGraphContextEdgeExport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CodeGraphContextEdgeExport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for CodeGraphContextEdgeExport
impl Serialize for CodeGraphContextEdgeExport
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for CodeGraphContextEdgeExport
impl RefUnwindSafe for CodeGraphContextEdgeExport
impl Send for CodeGraphContextEdgeExport
impl Sync for CodeGraphContextEdgeExport
impl Unpin for CodeGraphContextEdgeExport
impl UnsafeUnpin for CodeGraphContextEdgeExport
impl UnwindSafe for CodeGraphContextEdgeExport
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