pub struct ParamsSpec {
pub version: u32,
pub name: Option<String>,
pub params: Vec<ParamDef>,
}Fields§
§version: u32§name: Option<String>§params: Vec<ParamDef>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<'de> Deserialize<'de> for ParamsSpec
impl<'de> Deserialize<'de> for ParamsSpec
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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