Struct sep2_common::packages::flow_reservation::RequestStatus
source · pub struct RequestStatus {
pub date_time: TimeType,
pub request_status: RequestStatusType,
}
Available on crate feature
flow_reservation
only.Expand description
The RequestStatus object is used to indicate the current status of a Flow Reservation Request.
Fields§
§date_time: TimeType
The dateTime attribute will provide a timestamp of when the request status was set. dateTime MUST be set to the time at which the status change occurred, not a time in the future or past.
request_status: RequestStatusType
Field representing the request status type. 0 = Requested 1 = Cancelled All other values reserved.
Trait Implementations§
source§impl Clone for RequestStatus
impl Clone for RequestStatus
source§fn clone(&self) -> RequestStatus
fn clone(&self) -> RequestStatus
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 RequestStatus
impl Debug for RequestStatus
source§impl Default for RequestStatus
impl Default for RequestStatus
source§fn default() -> RequestStatus
fn default() -> RequestStatus
Returns the “default value” for a type. Read more
source§impl PartialEq<RequestStatus> for RequestStatus
impl PartialEq<RequestStatus> for RequestStatus
source§fn eq(&self, other: &RequestStatus) -> bool
fn eq(&self, other: &RequestStatus) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl YaDeserialize for RequestStatus
impl YaDeserialize for RequestStatus
source§impl YaSerialize for RequestStatus
impl YaSerialize for RequestStatus
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 RequestStatus
impl StructuralEq for RequestStatus
impl StructuralPartialEq for RequestStatus
Auto Trait Implementations§
impl RefUnwindSafe for RequestStatus
impl Send for RequestStatus
impl Sync for RequestStatus
impl Unpin for RequestStatus
impl UnwindSafe for RequestStatus
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