#[non_exhaustive]pub struct CopyLogEntriesResponse {
pub log_entries_copied_count: i64,
/* private fields */
}Expand description
Response type for CopyLogEntries long running operations.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.log_entries_copied_count: i64Number of log entries copied.
Implementations§
Source§impl CopyLogEntriesResponse
impl CopyLogEntriesResponse
pub fn new() -> Self
Sourcepub fn set_log_entries_copied_count<T: Into<i64>>(self, v: T) -> Self
pub fn set_log_entries_copied_count<T: Into<i64>>(self, v: T) -> Self
Sets the value of log_entries_copied_count.
Trait Implementations§
Source§impl Clone for CopyLogEntriesResponse
impl Clone for CopyLogEntriesResponse
Source§fn clone(&self) -> CopyLogEntriesResponse
fn clone(&self) -> CopyLogEntriesResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 CopyLogEntriesResponse
impl Debug for CopyLogEntriesResponse
Source§impl Default for CopyLogEntriesResponse
impl Default for CopyLogEntriesResponse
Source§fn default() -> CopyLogEntriesResponse
fn default() -> CopyLogEntriesResponse
Returns the “default value” for a type. Read more
Source§impl Message for CopyLogEntriesResponse
impl Message for CopyLogEntriesResponse
Source§impl PartialEq for CopyLogEntriesResponse
impl PartialEq for CopyLogEntriesResponse
impl StructuralPartialEq for CopyLogEntriesResponse
Auto Trait Implementations§
impl Freeze for CopyLogEntriesResponse
impl RefUnwindSafe for CopyLogEntriesResponse
impl Send for CopyLogEntriesResponse
impl Sync for CopyLogEntriesResponse
impl Unpin for CopyLogEntriesResponse
impl UnwindSafe for CopyLogEntriesResponse
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