pub struct CodeGraphSessionMutation {Show 16 fields
pub sequence: usize,
pub kind: CodeGraphSessionMutationKind,
pub operation: String,
pub selector: Option<String>,
pub target_block_id: Option<BlockId>,
pub resolved_block_ids: Vec<BlockId>,
pub traversal: Option<CodeGraphTraversalConfig>,
pub budget: Option<CodeGraphOperationBudget>,
pub nodes_added: Vec<BlockId>,
pub nodes_removed: Vec<BlockId>,
pub nodes_changed: Vec<BlockId>,
pub focus_before: Option<BlockId>,
pub focus_after: Option<BlockId>,
pub elapsed_ms: u64,
pub reason: Option<String>,
pub warnings: Vec<String>,
}Fields§
§sequence: usize§kind: CodeGraphSessionMutationKind§operation: String§selector: Option<String>§target_block_id: Option<BlockId>§resolved_block_ids: Vec<BlockId>§traversal: Option<CodeGraphTraversalConfig>§budget: Option<CodeGraphOperationBudget>§nodes_added: Vec<BlockId>§nodes_removed: Vec<BlockId>§nodes_changed: Vec<BlockId>§focus_before: Option<BlockId>§focus_after: Option<BlockId>§elapsed_ms: u64§reason: Option<String>§warnings: Vec<String>Trait Implementations§
Source§impl Clone for CodeGraphSessionMutation
impl Clone for CodeGraphSessionMutation
Source§fn clone(&self) -> CodeGraphSessionMutation
fn clone(&self) -> CodeGraphSessionMutation
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 CodeGraphSessionMutation
impl Debug for CodeGraphSessionMutation
Source§impl<'de> Deserialize<'de> for CodeGraphSessionMutation
impl<'de> Deserialize<'de> for CodeGraphSessionMutation
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CodeGraphSessionMutation, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CodeGraphSessionMutation, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for CodeGraphSessionMutation
impl Serialize for CodeGraphSessionMutation
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 CodeGraphSessionMutation
impl RefUnwindSafe for CodeGraphSessionMutation
impl Send for CodeGraphSessionMutation
impl Sync for CodeGraphSessionMutation
impl Unpin for CodeGraphSessionMutation
impl UnsafeUnpin for CodeGraphSessionMutation
impl UnwindSafe for CodeGraphSessionMutation
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