pub struct MethodParametersAttribute {
pub parameters: Vec<MethodParameter>,
}Expand description
The ordered MethodParameters payload.
Fields§
§parameters: Vec<MethodParameter>Parameters in descriptor order.
Implementations§
Source§impl MethodParametersAttribute
impl MethodParametersAttribute
Sourcepub fn decode(reader: &mut ByteReader<'_>) -> Result<Self, AttributeError>
pub fn decode(reader: &mut ByteReader<'_>) -> Result<Self, AttributeError>
Decode the u1-counted parameter table.
Trait Implementations§
Source§impl Clone for MethodParametersAttribute
impl Clone for MethodParametersAttribute
Source§fn clone(&self) -> MethodParametersAttribute
fn clone(&self) -> MethodParametersAttribute
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 MethodParametersAttribute
impl Debug for MethodParametersAttribute
impl Eq for MethodParametersAttribute
impl StructuralPartialEq for MethodParametersAttribute
Auto Trait Implementations§
impl Freeze for MethodParametersAttribute
impl RefUnwindSafe for MethodParametersAttribute
impl Send for MethodParametersAttribute
impl Sync for MethodParametersAttribute
impl Unpin for MethodParametersAttribute
impl UnsafeUnpin for MethodParametersAttribute
impl UnwindSafe for MethodParametersAttribute
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