pub struct DebugCollectLogsSkippedEntry {
pub bundle_path: String,
pub path: Option<String>,
pub reason: String,
}Expand description
An optional debug bundle entry that could not be included.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§bundle_path: StringRelative path requested for this bundle entry.
path: Option<String>Server-local source path that could not be read.
reason: StringReason the entry was skipped.
Trait Implementations§
Source§impl Clone for DebugCollectLogsSkippedEntry
impl Clone for DebugCollectLogsSkippedEntry
Source§fn clone(&self) -> DebugCollectLogsSkippedEntry
fn clone(&self) -> DebugCollectLogsSkippedEntry
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 DebugCollectLogsSkippedEntry
impl Debug for DebugCollectLogsSkippedEntry
Source§impl Default for DebugCollectLogsSkippedEntry
impl Default for DebugCollectLogsSkippedEntry
Source§fn default() -> DebugCollectLogsSkippedEntry
fn default() -> DebugCollectLogsSkippedEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DebugCollectLogsSkippedEntry
impl<'de> Deserialize<'de> for DebugCollectLogsSkippedEntry
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 DebugCollectLogsSkippedEntry
impl RefUnwindSafe for DebugCollectLogsSkippedEntry
impl Send for DebugCollectLogsSkippedEntry
impl Sync for DebugCollectLogsSkippedEntry
impl Unpin for DebugCollectLogsSkippedEntry
impl UnsafeUnpin for DebugCollectLogsSkippedEntry
impl UnwindSafe for DebugCollectLogsSkippedEntry
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