pub struct ParamsSpec { /* private fields */ }Implementations§
Source§impl ParamsSpec
impl ParamsSpec
pub fn get(&self, name: &String) -> Option<&FieldDefinition>
pub fn iter(&self) -> impl Iterator<Item = (&String, &FieldDefinition)>
Trait Implementations§
Source§impl Clone for ParamsSpec
impl Clone for ParamsSpec
Source§fn clone(&self) -> ParamsSpec
fn clone(&self) -> ParamsSpec
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 ParamsSpec
impl Debug for ParamsSpec
Source§impl FromIterator1<(String, FieldDefinition)> for ParamsSpec
impl FromIterator1<(String, FieldDefinition)> for ParamsSpec
fn from_iter1<I>(items: I) -> ParamsSpec
fn try_from_iter<I>(
items: I,
) -> Result<Self, EmptyError<Peekable<<I as IntoIterator>::IntoIter>>>where
Self: Sized,
I: IntoIterator<Item = T>,
Auto Trait Implementations§
impl Freeze for ParamsSpec
impl !RefUnwindSafe for ParamsSpec
impl !Send for ParamsSpec
impl !Sync for ParamsSpec
impl Unpin for ParamsSpec
impl UnsafeUnpin for ParamsSpec
impl !UnwindSafe for ParamsSpec
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