#[non_exhaustive]pub struct CopyLogEntriesRequest {
pub name: String,
pub filter: String,
pub destination: String,
/* private fields */
}Expand description
The parameters to CopyLogEntries.
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.name: StringRequired. Log bucket from which to copy log entries.
For example:
"projects/my-project/locations/global/buckets/my-source-bucket"
filter: StringOptional. A filter specifying which log entries to copy. The filter must be no more than 20k characters. An empty filter matches all log entries.
destination: StringRequired. Destination to which to copy log entries.
Implementations§
Trait Implementations§
Source§impl Clone for CopyLogEntriesRequest
impl Clone for CopyLogEntriesRequest
Source§fn clone(&self) -> CopyLogEntriesRequest
fn clone(&self) -> CopyLogEntriesRequest
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 CopyLogEntriesRequest
impl Debug for CopyLogEntriesRequest
Source§impl Default for CopyLogEntriesRequest
impl Default for CopyLogEntriesRequest
Source§fn default() -> CopyLogEntriesRequest
fn default() -> CopyLogEntriesRequest
Returns the “default value” for a type. Read more
Source§impl Message for CopyLogEntriesRequest
impl Message for CopyLogEntriesRequest
Source§impl PartialEq for CopyLogEntriesRequest
impl PartialEq for CopyLogEntriesRequest
impl StructuralPartialEq for CopyLogEntriesRequest
Auto Trait Implementations§
impl Freeze for CopyLogEntriesRequest
impl RefUnwindSafe for CopyLogEntriesRequest
impl Send for CopyLogEntriesRequest
impl Sync for CopyLogEntriesRequest
impl Unpin for CopyLogEntriesRequest
impl UnwindSafe for CopyLogEntriesRequest
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