pub struct DebugCollectLogsDestinationArchive {
pub kind: DebugCollectLogsDestinationArchiveKind,
pub no_overwrite: Option<bool>,
pub output_path: String,
}Fields§
§kind: DebugCollectLogsDestinationArchiveKind§no_overwrite: Option<bool>When true, create the archive atomically without overwriting an existing file by appending (N) before the extension as needed. Defaults to false.
output_path: StringAbsolute or server-relative path for the .tgz archive to create.
Trait Implementations§
Source§impl Clone for DebugCollectLogsDestinationArchive
impl Clone for DebugCollectLogsDestinationArchive
Source§fn clone(&self) -> DebugCollectLogsDestinationArchive
fn clone(&self) -> DebugCollectLogsDestinationArchive
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 DebugCollectLogsDestinationArchive
impl Default for DebugCollectLogsDestinationArchive
Source§fn default() -> DebugCollectLogsDestinationArchive
fn default() -> DebugCollectLogsDestinationArchive
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DebugCollectLogsDestinationArchive
impl<'de> Deserialize<'de> for DebugCollectLogsDestinationArchive
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 DebugCollectLogsDestinationArchive
impl RefUnwindSafe for DebugCollectLogsDestinationArchive
impl Send for DebugCollectLogsDestinationArchive
impl Sync for DebugCollectLogsDestinationArchive
impl Unpin for DebugCollectLogsDestinationArchive
impl UnsafeUnpin for DebugCollectLogsDestinationArchive
impl UnwindSafe for DebugCollectLogsDestinationArchive
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