#[repr(C)]
pub enum AwsLogLevel {
AWS_LL_NONE,
AWS_LL_FATAL,
AWS_LL_ERROR,
AWS_LL_WARN,
AWS_LL_INFO,
AWS_LL_DEBUG,
AWS_LL_TRACE,
AWS_LL_COUNT,
}
Variants
AWS_LL_NONE
AWS_LL_FATAL
AWS_LL_ERROR
AWS_LL_WARN
AWS_LL_INFO
AWS_LL_DEBUG
AWS_LL_TRACE
AWS_LL_COUNT
Trait Implementations
sourceimpl Clone for AwsLogLevel
impl Clone for AwsLogLevel
sourcefn clone(&self) -> AwsLogLevel
fn clone(&self) -> AwsLogLevel
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for AwsLogLevel
impl Debug for AwsLogLevel
sourceimpl PartialEq<AwsLogLevel> for AwsLogLevel
impl PartialEq<AwsLogLevel> for AwsLogLevel
sourcefn eq(&self, other: &AwsLogLevel) -> bool
fn eq(&self, other: &AwsLogLevel) -> bool
impl Copy for AwsLogLevel
impl Eq for AwsLogLevel
impl StructuralEq for AwsLogLevel
impl StructuralPartialEq for AwsLogLevel
Auto Trait Implementations
impl RefUnwindSafe for AwsLogLevel
impl Send for AwsLogLevel
impl Sync for AwsLogLevel
impl Unpin for AwsLogLevel
impl UnwindSafe for AwsLogLevel
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more