pub struct MethodPlan {
pub api_kind: ApiKind,
pub interface_name: String,
pub interface_summary: Option<String>,
pub method_name: String,
pub method_summary: Option<String>,
pub c_method_name: String,
pub rust_method_name: String,
pub area_kind: AreaKind,
pub wire_kind: MethodWireKind,
pub start_address: u16,
pub quantity: u16,
pub planned_value: PlannedValue,
}Fields§
§api_kind: ApiKind§interface_name: String§interface_summary: Option<String>§method_name: String§method_summary: Option<String>§c_method_name: String§rust_method_name: String§area_kind: AreaKind§wire_kind: MethodWireKind§start_address: u16§quantity: u16§planned_value: PlannedValueTrait Implementations§
Source§impl Clone for MethodPlan
impl Clone for MethodPlan
Source§fn clone(&self) -> MethodPlan
fn clone(&self) -> MethodPlan
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 MethodPlan
impl Debug for MethodPlan
Source§impl PartialEq for MethodPlan
impl PartialEq for MethodPlan
Source§fn eq(&self, other: &MethodPlan) -> bool
fn eq(&self, other: &MethodPlan) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for MethodPlan
impl StructuralPartialEq for MethodPlan
Auto Trait Implementations§
impl Freeze for MethodPlan
impl RefUnwindSafe for MethodPlan
impl Send for MethodPlan
impl Sync for MethodPlan
impl Unpin for MethodPlan
impl UnsafeUnpin for MethodPlan
impl UnwindSafe for MethodPlan
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