pub struct SessionDebugCollectLogsResult {
pub entries: Vec<DebugCollectLogsCollectedEntry>,
pub kind: DebugCollectLogsResultKind,
pub path: String,
pub skipped_entries: Option<Vec<DebugCollectLogsSkippedEntry>>,
}Expand description
Result of collecting a 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.
Fields§
§entries: Vec<DebugCollectLogsCollectedEntry>Files included in the bundle.
kind: DebugCollectLogsResultKindDestination kind that was written.
path: StringActual archive path or staging directory path written. This may differ from the requested path when no-overwrite suffixing or fallback-to-temp-directory was needed.
skipped_entries: Option<Vec<DebugCollectLogsSkippedEntry>>Optional files or directories that could not be included.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SessionDebugCollectLogsResult
impl<'de> Deserialize<'de> for SessionDebugCollectLogsResult
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 SessionDebugCollectLogsResult
impl RefUnwindSafe for SessionDebugCollectLogsResult
impl Send for SessionDebugCollectLogsResult
impl Sync for SessionDebugCollectLogsResult
impl Unpin for SessionDebugCollectLogsResult
impl UnsafeUnpin for SessionDebugCollectLogsResult
impl UnwindSafe for SessionDebugCollectLogsResult
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