pub struct BoardEnvironment {
pub name: String,
pub processor_name: Option<String>,
}Expand description
Represents a board environment entry
Fields§
§name: StringIDE environment name (e.g. uvision, iar, eclipse)
processor_name: Option<String>Processor name for multi-core boards; limits this environment entry to one core
Trait Implementations§
Source§impl Clone for BoardEnvironment
impl Clone for BoardEnvironment
Source§fn clone(&self) -> BoardEnvironment
fn clone(&self) -> BoardEnvironment
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BoardEnvironment
impl Debug for BoardEnvironment
Source§impl Default for BoardEnvironment
impl Default for BoardEnvironment
Source§fn default() -> BoardEnvironment
fn default() -> BoardEnvironment
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BoardEnvironment
impl<'de> Deserialize<'de> for BoardEnvironment
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
impl Eq for BoardEnvironment
Source§impl PartialEq for BoardEnvironment
impl PartialEq for BoardEnvironment
Source§impl Serialize for BoardEnvironment
impl Serialize for BoardEnvironment
impl StructuralPartialEq for BoardEnvironment
Auto Trait Implementations§
impl Freeze for BoardEnvironment
impl RefUnwindSafe for BoardEnvironment
impl Send for BoardEnvironment
impl Sync for BoardEnvironment
impl Unpin for BoardEnvironment
impl UnsafeUnpin for BoardEnvironment
impl UnwindSafe for BoardEnvironment
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