pub struct InputMetadata {
pub name: String,
pub value_type: ValueType,
pub required: bool,
}Fields§
§name: String§value_type: ValueType§required: boolTrait Implementations§
Source§impl Clone for InputMetadata
impl Clone for InputMetadata
Source§fn clone(&self) -> InputMetadata
fn clone(&self) -> InputMetadata
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 InputMetadata
impl Debug for InputMetadata
Source§impl PartialEq for InputMetadata
impl PartialEq for InputMetadata
Source§fn eq(&self, other: &InputMetadata) -> bool
fn eq(&self, other: &InputMetadata) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InputMetadata
Auto Trait Implementations§
impl Freeze for InputMetadata
impl RefUnwindSafe for InputMetadata
impl Send for InputMetadata
impl Sync for InputMetadata
impl Unpin for InputMetadata
impl UnsafeUnpin for InputMetadata
impl UnwindSafe for InputMetadata
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