Struct sep2_common::packages::der::DERControlList
source · pub struct DERControlList {
pub der_control: Vec<DERControl>,
pub all: Uint32,
pub results: Uint32,
pub subscribable: Option<SubscribableType>,
pub href: Option<String>,
}
Available on crate feature
der
only.Fields§
§der_control: Vec<DERControl>
§all: Uint32
The number specifying “all” of the items in the list. Required on GET, ignored otherwise.
results: Uint32
Indicates the number of items in this page of results.
subscribable: Option<SubscribableType>
Indicates whether or not subscriptions are supported for this resource, and whether or not conditional (thresholds) are supported. If not specified, is “not subscribable” (0).
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 DERControlList
impl Clone for DERControlList
source§fn clone(&self) -> DERControlList
fn clone(&self) -> DERControlList
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 DERControlList
impl Debug for DERControlList
source§impl Default for DERControlList
impl Default for DERControlList
source§fn default() -> DERControlList
fn default() -> DERControlList
Returns the “default value” for a type. Read more
source§impl PartialEq<DERControlList> for DERControlList
impl PartialEq<DERControlList> for DERControlList
source§fn eq(&self, other: &DERControlList) -> bool
fn eq(&self, other: &DERControlList) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl SEList for DERControlList
impl SEList for DERControlList
type Inner = DERControl
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 DERControlList
impl SEResource for DERControlList
source§impl SESubscribableResource for DERControlList
impl SESubscribableResource for DERControlList
fn subscribable(&self) -> Option<SubscribableType>
source§impl YaDeserialize for DERControlList
impl YaDeserialize for DERControlList
source§impl YaSerialize for DERControlList
impl YaSerialize for DERControlList
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 DERControlList
impl SESubscribableList for DERControlList
impl StructuralEq for DERControlList
impl StructuralPartialEq for DERControlList
Auto Trait Implementations§
impl RefUnwindSafe for DERControlList
impl Send for DERControlList
impl Sync for DERControlList
impl Unpin for DERControlList
impl UnwindSafe for DERControlList
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