pub struct DebugCollectLogsResult {
pub entries: Vec<DebugCollectLogsCollectedEntry>,
pub kind: DebugCollectLogsResultKind,
pub path: String,
pub skipped_entries: Option<Vec<DebugCollectLogsSkippedEntry>>,
}Expand description
Result of collecting a redacted 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 redacted 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 Clone for DebugCollectLogsResult
impl Clone for DebugCollectLogsResult
Source§fn clone(&self) -> DebugCollectLogsResult
fn clone(&self) -> DebugCollectLogsResult
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 Debug for DebugCollectLogsResult
impl Debug for DebugCollectLogsResult
Source§impl Default for DebugCollectLogsResult
impl Default for DebugCollectLogsResult
Source§fn default() -> DebugCollectLogsResult
fn default() -> DebugCollectLogsResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DebugCollectLogsResult
impl<'de> Deserialize<'de> for DebugCollectLogsResult
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 DebugCollectLogsResult
impl RefUnwindSafe for DebugCollectLogsResult
impl Send for DebugCollectLogsResult
impl Sync for DebugCollectLogsResult
impl Unpin for DebugCollectLogsResult
impl UnsafeUnpin for DebugCollectLogsResult
impl UnwindSafe for DebugCollectLogsResult
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