pub struct ValidateArgspecResult {
pub valid: bool,
pub error: Option<String>,
pub arg_count: Option<usize>,
pub parsed: Option<Vec<ParsedArgSpecSlot>>,
}Fields§
§valid: bool§error: Option<String>§arg_count: Option<usize>§parsed: Option<Vec<ParsedArgSpecSlot>>Trait Implementations§
Source§impl Clone for ValidateArgspecResult
impl Clone for ValidateArgspecResult
Source§fn clone(&self) -> ValidateArgspecResult
fn clone(&self) -> ValidateArgspecResult
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 ValidateArgspecResult
impl Debug for ValidateArgspecResult
impl Eq for ValidateArgspecResult
Source§impl PartialEq for ValidateArgspecResult
impl PartialEq for ValidateArgspecResult
Source§fn eq(&self, other: &ValidateArgspecResult) -> bool
fn eq(&self, other: &ValidateArgspecResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ValidateArgspecResult
impl Serialize for ValidateArgspecResult
impl StructuralPartialEq for ValidateArgspecResult
Auto Trait Implementations§
impl Freeze for ValidateArgspecResult
impl RefUnwindSafe for ValidateArgspecResult
impl Send for ValidateArgspecResult
impl Sync for ValidateArgspecResult
impl Unpin for ValidateArgspecResult
impl UnsafeUnpin for ValidateArgspecResult
impl UnwindSafe for ValidateArgspecResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.