pub struct SupportedParamResult {
pub param_name: String,
pub access: ParamAccessType,
pub value_type: ParamValueType,
pub value_change: ValueChangeType,
}Fields§
§param_name: String§access: ParamAccessType§value_type: ParamValueType§value_change: ValueChangeTypeTrait Implementations§
Source§impl Clone for SupportedParamResult
impl Clone for SupportedParamResult
Source§fn clone(&self) -> SupportedParamResult
fn clone(&self) -> SupportedParamResult
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 SupportedParamResult
impl Debug for SupportedParamResult
Source§impl Default for SupportedParamResult
impl Default for SupportedParamResult
Source§fn default() -> SupportedParamResult
fn default() -> SupportedParamResult
Returns the “default value” for a type. Read more
Source§impl<'a> MessageRead<'a> for SupportedParamResult
impl<'a> MessageRead<'a> for SupportedParamResult
Source§fn from_reader(r: &mut BytesReader, bytes: &'a [u8]) -> Result<Self>
fn from_reader(r: &mut BytesReader, bytes: &'a [u8]) -> Result<Self>
Constructs an instance of
Self by reading from the given bytes
via the given reader. Read moreSource§impl MessageWrite for SupportedParamResult
impl MessageWrite for SupportedParamResult
Source§impl PartialEq for SupportedParamResult
impl PartialEq for SupportedParamResult
Source§impl Serialize for SupportedParamResult
impl Serialize for SupportedParamResult
impl StructuralPartialEq for SupportedParamResult
Auto Trait Implementations§
impl Freeze for SupportedParamResult
impl RefUnwindSafe for SupportedParamResult
impl Send for SupportedParamResult
impl Sync for SupportedParamResult
impl Unpin for SupportedParamResult
impl UnwindSafe for SupportedParamResult
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