Struct sep2_common::packages::fsa::FunctionSetAssignmentsList
source · pub struct FunctionSetAssignmentsList {
pub function_set_assignments: Vec<FunctionSetAssignments>,
pub poll_rate: Option<Uint32>,
pub all: Uint32,
pub results: Uint32,
pub subscribable: Option<SubscribableType>,
pub href: Option<String>,
}
Available on crate feature
fsa
only.Fields§
§function_set_assignments: Vec<FunctionSetAssignments>
§poll_rate: Option<Uint32>
The default polling rate for this function set (this resource and all resources below), in seconds. If not specified, a default of 900 seconds (15 minutes) is used. It is RECOMMENDED a client poll the resources of this function set every pollRate seconds.
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 FunctionSetAssignmentsList
impl Clone for FunctionSetAssignmentsList
source§fn clone(&self) -> FunctionSetAssignmentsList
fn clone(&self) -> FunctionSetAssignmentsList
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 FunctionSetAssignmentsList
impl Debug for FunctionSetAssignmentsList
source§impl Default for FunctionSetAssignmentsList
impl Default for FunctionSetAssignmentsList
source§fn default() -> FunctionSetAssignmentsList
fn default() -> FunctionSetAssignmentsList
Returns the “default value” for a type. Read more
source§impl PartialEq<FunctionSetAssignmentsList> for FunctionSetAssignmentsList
impl PartialEq<FunctionSetAssignmentsList> for FunctionSetAssignmentsList
source§fn eq(&self, other: &FunctionSetAssignmentsList) -> bool
fn eq(&self, other: &FunctionSetAssignmentsList) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl SEList for FunctionSetAssignmentsList
impl SEList for FunctionSetAssignmentsList
type Inner = FunctionSetAssignments
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 SESubscribableResource for FunctionSetAssignmentsList
impl SESubscribableResource for FunctionSetAssignmentsList
fn subscribable(&self) -> Option<SubscribableType>
source§impl YaDeserialize for FunctionSetAssignmentsList
impl YaDeserialize for FunctionSetAssignmentsList
source§impl YaSerialize for FunctionSetAssignmentsList
impl YaSerialize for FunctionSetAssignmentsList
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 FunctionSetAssignmentsList
impl SESubscribableList for FunctionSetAssignmentsList
impl StructuralEq for FunctionSetAssignmentsList
impl StructuralPartialEq for FunctionSetAssignmentsList
Auto Trait Implementations§
impl RefUnwindSafe for FunctionSetAssignmentsList
impl Send for FunctionSetAssignmentsList
impl Sync for FunctionSetAssignmentsList
impl Unpin for FunctionSetAssignmentsList
impl UnwindSafe for FunctionSetAssignmentsList
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