pub struct DERCurveGet<CustomDataType = NoCustomData> {
pub curve: DERCurve<CustomDataType>,
pub curve_type: DERControlEnum,
pub custom_data: Option<CustomDataType>,
pub id: String<36usize>,
pub is_default: bool,
pub is_superseded: bool,
}Fields§
§curve: DERCurve<CustomDataType>§curve_type: DERControlEnum§custom_data: Option<CustomDataType>§id: String<36usize>Id of DER curve
is_default: boolTrue if this is a default curve
is_superseded: boolTrue if this setting is superseded by a higher priority setting (i.e. lower value of priority)
Trait Implementations§
Source§impl<CustomDataType: Clone> Clone for DERCurveGet<CustomDataType>
impl<CustomDataType: Clone> Clone for DERCurveGet<CustomDataType>
Source§fn clone(&self) -> DERCurveGet<CustomDataType>
fn clone(&self) -> DERCurveGet<CustomDataType>
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<CustomDataType: Debug> Debug for DERCurveGet<CustomDataType>
impl<CustomDataType: Debug> Debug for DERCurveGet<CustomDataType>
Source§impl<'de, CustomDataType> Deserialize<'de> for DERCurveGet<CustomDataType>where
CustomDataType: Deserialize<'de>,
impl<'de, CustomDataType> Deserialize<'de> for DERCurveGet<CustomDataType>where
CustomDataType: Deserialize<'de>,
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
Source§impl<CustomDataType: PartialEq> PartialEq for DERCurveGet<CustomDataType>
impl<CustomDataType: PartialEq> PartialEq for DERCurveGet<CustomDataType>
Source§impl<CustomDataType> Serialize for DERCurveGet<CustomDataType>where
CustomDataType: Serialize,
impl<CustomDataType> Serialize for DERCurveGet<CustomDataType>where
CustomDataType: Serialize,
impl<CustomDataType: PartialEq> StructuralPartialEq for DERCurveGet<CustomDataType>
Source§impl<CustomDataType> Validate for DERCurveGet<CustomDataType>
Available on crate feature validate only.
impl<CustomDataType> Validate for DERCurveGet<CustomDataType>
Available on crate feature
validate only.Auto Trait Implementations§
impl<CustomDataType> Freeze for DERCurveGet<CustomDataType>where
CustomDataType: Freeze,
impl<CustomDataType> RefUnwindSafe for DERCurveGet<CustomDataType>where
CustomDataType: RefUnwindSafe,
impl<CustomDataType> Send for DERCurveGet<CustomDataType>where
CustomDataType: Send,
impl<CustomDataType> Sync for DERCurveGet<CustomDataType>where
CustomDataType: Sync,
impl<CustomDataType> Unpin for DERCurveGet<CustomDataType>where
CustomDataType: Unpin,
impl<CustomDataType> UnsafeUnpin for DERCurveGet<CustomDataType>where
CustomDataType: UnsafeUnpin,
impl<CustomDataType> UnwindSafe for DERCurveGet<CustomDataType>where
CustomDataType: UnwindSafe,
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