Struct sep2_common::packages::der::DERCurveList
source · pub struct DERCurveList {
pub der_curve: Vec<DERCurve>,
pub all: Uint32,
pub results: Uint32,
pub href: Option<String>,
}
Available on crate feature
der
only.Fields§
§der_curve: Vec<DERCurve>
§all: Uint32
The number specifying “all” of the items in the list. Required on a response to a GET, ignored otherwise.
results: Uint32
Indicates the number of items in this page of results.
href: Option<String>
A reference to the resource address (URI). Required in a response to a GET, ignored otherwise.
Trait Implementations§
source§impl Clone for DERCurveList
impl Clone for DERCurveList
source§fn clone(&self) -> DERCurveList
fn clone(&self) -> DERCurveList
Returns a copy 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 DERCurveList
impl Debug for DERCurveList
source§impl Default for DERCurveList
impl Default for DERCurveList
source§fn default() -> DERCurveList
fn default() -> DERCurveList
Returns the “default value” for a type. Read more
source§impl PartialEq<DERCurveList> for DERCurveList
impl PartialEq<DERCurveList> for DERCurveList
source§fn eq(&self, other: &DERCurveList) -> bool
fn eq(&self, other: &DERCurveList) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl SEList for DERCurveList
impl SEList for DERCurveList
type Inner = DERCurve
fn all(&self) -> Uint32
fn all_mut(&mut self) -> &mut Uint32
fn results(&self) -> Uint32
fn results_mut(&mut self) -> &mut Uint32
fn list_as_slice(&self) -> &[Self::Inner]
fn list_mut(&mut self) -> &mut Vec<Self::Inner>
source§impl SEResource for DERCurveList
impl SEResource for DERCurveList
source§impl YaDeserialize for DERCurveList
impl YaDeserialize for DERCurveList
source§impl YaSerialize for DERCurveList
impl YaSerialize for DERCurveList
fn name() -> &'static strwhere Self: Sized,
fn serialize<W: Write>(&self, writer: &mut Serializer<W>) -> Result<(), String>where Self: Sized,
fn serialize_attributes( &self, source_attributes: Vec<OwnedAttribute>, source_namespace: Namespace ) -> Result<(Vec<OwnedAttribute>, Namespace), String>where Self: Sized,
impl Eq for DERCurveList
impl StructuralEq for DERCurveList
impl StructuralPartialEq for DERCurveList
Auto Trait Implementations§
impl RefUnwindSafe for DERCurveList
impl Send for DERCurveList
impl Sync for DERCurveList
impl Unpin for DERCurveList
impl UnwindSafe for DERCurveList
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