pub enum SketchSizeKind {
Ram {
size: SketchSize,
},
Flash {
size: SketchSize,
},
}
Expand description
An enumeration of possible compilation size kinds.
Variants§
Ram
The compilation size of “Ram for global variables”.
Fields
§
size: SketchSize
Flash
The compilation size of flash memory.
Fields
§
size: SketchSize
Trait Implementations§
Source§impl Debug for SketchSizeKind
impl Debug for SketchSizeKind
Source§impl Default for SketchSizeKind
impl Default for SketchSizeKind
Source§impl<'de> Deserialize<'de> for SketchSizeKind
impl<'de> Deserialize<'de> for SketchSizeKind
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
Auto Trait Implementations§
impl Freeze for SketchSizeKind
impl RefUnwindSafe for SketchSizeKind
impl Send for SketchSizeKind
impl Sync for SketchSizeKind
impl Unpin for SketchSizeKind
impl UnwindSafe for SketchSizeKind
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