pub struct CodeGraphNodeSummary {
pub block_id: BlockId,
pub node_class: String,
pub label: String,
pub logical_key: Option<String>,
pub symbol_name: Option<String>,
pub path: Option<String>,
pub exported: bool,
pub coderef: Option<CodeGraphCoderef>,
}Fields§
§block_id: BlockId§node_class: String§label: String§logical_key: Option<String>§symbol_name: Option<String>§path: Option<String>§exported: bool§coderef: Option<CodeGraphCoderef>Trait Implementations§
Source§impl Clone for CodeGraphNodeSummary
impl Clone for CodeGraphNodeSummary
Source§fn clone(&self) -> CodeGraphNodeSummary
fn clone(&self) -> CodeGraphNodeSummary
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 CodeGraphNodeSummary
impl Debug for CodeGraphNodeSummary
Source§impl<'de> Deserialize<'de> for CodeGraphNodeSummary
impl<'de> Deserialize<'de> for CodeGraphNodeSummary
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CodeGraphNodeSummary, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CodeGraphNodeSummary, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for CodeGraphNodeSummary
impl Serialize for CodeGraphNodeSummary
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 CodeGraphNodeSummary
impl RefUnwindSafe for CodeGraphNodeSummary
impl Send for CodeGraphNodeSummary
impl Sync for CodeGraphNodeSummary
impl Unpin for CodeGraphNodeSummary
impl UnsafeUnpin for CodeGraphNodeSummary
impl UnwindSafe for CodeGraphNodeSummary
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