pub enum StreamingLogLevel {
Disabled,
Basic,
Full,
}Expand description
Log levels for streaming in CubeCL.
Variants§
Disabled
Compilation logging is disabled.
Basic
Basic streaming information is logged such as when streams are merged.
Full
Full streaming details are logged.
Trait Implementations§
Source§impl Clone for StreamingLogLevel
impl Clone for StreamingLogLevel
Source§fn clone(&self) -> StreamingLogLevel
fn clone(&self) -> StreamingLogLevel
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 StreamingLogLevel
impl Debug for StreamingLogLevel
Source§impl Default for StreamingLogLevel
impl Default for StreamingLogLevel
Source§fn default() -> StreamingLogLevel
fn default() -> StreamingLogLevel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StreamingLogLevel
impl<'de> Deserialize<'de> for StreamingLogLevel
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
Source§impl Serialize for StreamingLogLevel
impl Serialize for StreamingLogLevel
impl Copy for StreamingLogLevel
Auto Trait Implementations§
impl Freeze for StreamingLogLevel
impl RefUnwindSafe for StreamingLogLevel
impl Send for StreamingLogLevel
impl Sync for StreamingLogLevel
impl Unpin for StreamingLogLevel
impl UnwindSafe for StreamingLogLevel
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