pub struct DERCurveGet<const D_E_R_CURVE_START_TIME_CAP: usize = 1024> {
pub curve: DERCurve<D_E_R_CURVE_START_TIME_CAP>,
pub curve_type: DERControlEnum,
pub custom_data: Option<CustomData>,
pub id: String<36usize>,
pub is_default: bool,
pub is_superseded: bool,
}Fields§
§curve: DERCurve<D_E_R_CURVE_START_TIME_CAP>§curve_type: DERControlEnum§custom_data: Option<CustomData>§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<const D_E_R_CURVE_START_TIME_CAP: usize> Clone for DERCurveGet<D_E_R_CURVE_START_TIME_CAP>
impl<const D_E_R_CURVE_START_TIME_CAP: usize> Clone for DERCurveGet<D_E_R_CURVE_START_TIME_CAP>
Source§fn clone(&self) -> DERCurveGet<D_E_R_CURVE_START_TIME_CAP>
fn clone(&self) -> DERCurveGet<D_E_R_CURVE_START_TIME_CAP>
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<const D_E_R_CURVE_START_TIME_CAP: usize> Debug for DERCurveGet<D_E_R_CURVE_START_TIME_CAP>
impl<const D_E_R_CURVE_START_TIME_CAP: usize> Debug for DERCurveGet<D_E_R_CURVE_START_TIME_CAP>
Source§impl<const D_E_R_CURVE_START_TIME_CAP: usize> PartialEq for DERCurveGet<D_E_R_CURVE_START_TIME_CAP>
impl<const D_E_R_CURVE_START_TIME_CAP: usize> PartialEq for DERCurveGet<D_E_R_CURVE_START_TIME_CAP>
impl<const D_E_R_CURVE_START_TIME_CAP: usize> StructuralPartialEq for DERCurveGet<D_E_R_CURVE_START_TIME_CAP>
Auto Trait Implementations§
impl<const D_E_R_CURVE_START_TIME_CAP: usize> Freeze for DERCurveGet<D_E_R_CURVE_START_TIME_CAP>
impl<const D_E_R_CURVE_START_TIME_CAP: usize> RefUnwindSafe for DERCurveGet<D_E_R_CURVE_START_TIME_CAP>
impl<const D_E_R_CURVE_START_TIME_CAP: usize> Send for DERCurveGet<D_E_R_CURVE_START_TIME_CAP>
impl<const D_E_R_CURVE_START_TIME_CAP: usize> Sync for DERCurveGet<D_E_R_CURVE_START_TIME_CAP>
impl<const D_E_R_CURVE_START_TIME_CAP: usize> Unpin for DERCurveGet<D_E_R_CURVE_START_TIME_CAP>
impl<const D_E_R_CURVE_START_TIME_CAP: usize> UnsafeUnpin for DERCurveGet<D_E_R_CURVE_START_TIME_CAP>
impl<const D_E_R_CURVE_START_TIME_CAP: usize> UnwindSafe for DERCurveGet<D_E_R_CURVE_START_TIME_CAP>
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