pub struct TraceVariable {
pub name: String,
pub port: u8,
pub ty: String,
}Expand description
One [[trace.variables]] entry.
Fields§
§name: String§port: u8§ty: StringTrait Implementations§
Source§impl Clone for TraceVariable
impl Clone for TraceVariable
Source§fn clone(&self) -> TraceVariable
fn clone(&self) -> TraceVariable
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 TraceVariable
impl Debug for TraceVariable
Source§impl Default for TraceVariable
impl Default for TraceVariable
Source§fn default() -> TraceVariable
fn default() -> TraceVariable
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TraceVariable
impl<'de> Deserialize<'de> for TraceVariable
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 TraceVariable
impl RefUnwindSafe for TraceVariable
impl Send for TraceVariable
impl Sync for TraceVariable
impl Unpin for TraceVariable
impl UnsafeUnpin for TraceVariable
impl UnwindSafe for TraceVariable
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