pub enum DebugCollectLogsDestination {
Archive(DebugCollectLogsDestinationArchive),
Directory(DebugCollectLogsDestinationDirectory),
}Expand description
Destination for the session debug bundle.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Variants§
Archive(DebugCollectLogsDestinationArchive)
Directory(DebugCollectLogsDestinationDirectory)
Trait Implementations§
Source§impl Clone for DebugCollectLogsDestination
impl Clone for DebugCollectLogsDestination
Source§impl Debug for DebugCollectLogsDestination
impl Debug for DebugCollectLogsDestination
Source§impl<'de> Deserialize<'de> for DebugCollectLogsDestination
impl<'de> Deserialize<'de> for DebugCollectLogsDestination
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 DebugCollectLogsDestination
impl RefUnwindSafe for DebugCollectLogsDestination
impl Send for DebugCollectLogsDestination
impl Sync for DebugCollectLogsDestination
impl Unpin for DebugCollectLogsDestination
impl UnsafeUnpin for DebugCollectLogsDestination
impl UnwindSafe for DebugCollectLogsDestination
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