pub struct LogDestination {
pub log_group_name: String,
pub log_stream_name: String,
}Expand description
To which logs to sended.
Fields§
§log_group_name: StringThe name of the log group.
log_stream_name: StringThe name of the log stream.
Trait Implementations§
Source§impl Clone for LogDestination
impl Clone for LogDestination
Source§fn clone(&self) -> LogDestination
fn clone(&self) -> LogDestination
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 LogDestination
impl Debug for LogDestination
Source§impl Default for LogDestination
impl Default for LogDestination
Source§fn default() -> LogDestination
fn default() -> LogDestination
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LogDestination
impl RefUnwindSafe for LogDestination
impl Send for LogDestination
impl Sync for LogDestination
impl Unpin for LogDestination
impl UnwindSafe for LogDestination
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