pub enum MetadataSnapshotRemoteMetadataTaskType {
Cca,
Cli,
Unknown,
}Expand description
Whether the remote task originated from Copilot Coding Agent (cca) or a CLI --remote invocation.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Variants§
Cca
Remote task originated from Copilot Coding Agent.
Cli
Remote task originated from a CLI remote-session invocation.
Unknown
Unknown variant for forward compatibility.
Trait Implementations§
Source§impl Clone for MetadataSnapshotRemoteMetadataTaskType
impl Clone for MetadataSnapshotRemoteMetadataTaskType
Source§fn clone(&self) -> MetadataSnapshotRemoteMetadataTaskType
fn clone(&self) -> MetadataSnapshotRemoteMetadataTaskType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for MetadataSnapshotRemoteMetadataTaskType
impl Default for MetadataSnapshotRemoteMetadataTaskType
Source§fn default() -> MetadataSnapshotRemoteMetadataTaskType
fn default() -> MetadataSnapshotRemoteMetadataTaskType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MetadataSnapshotRemoteMetadataTaskType
impl<'de> Deserialize<'de> for MetadataSnapshotRemoteMetadataTaskType
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
impl Eq for MetadataSnapshotRemoteMetadataTaskType
Source§impl PartialEq for MetadataSnapshotRemoteMetadataTaskType
impl PartialEq for MetadataSnapshotRemoteMetadataTaskType
Source§fn eq(&self, other: &MetadataSnapshotRemoteMetadataTaskType) -> bool
fn eq(&self, other: &MetadataSnapshotRemoteMetadataTaskType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MetadataSnapshotRemoteMetadataTaskType
Auto Trait Implementations§
impl Freeze for MetadataSnapshotRemoteMetadataTaskType
impl RefUnwindSafe for MetadataSnapshotRemoteMetadataTaskType
impl Send for MetadataSnapshotRemoteMetadataTaskType
impl Sync for MetadataSnapshotRemoteMetadataTaskType
impl Unpin for MetadataSnapshotRemoteMetadataTaskType
impl UnsafeUnpin for MetadataSnapshotRemoteMetadataTaskType
impl UnwindSafe for MetadataSnapshotRemoteMetadataTaskType
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