pub struct RgpPollData {
pub name: String,
pub rgp_status: RgpStatus,
pub req_date: DateTime<Utc>,
pub report_due_date: DateTime<Utc>,
}Expand description
RGP request status
Fields§
§name: String§rgp_status: RgpStatus§req_date: DateTime<Utc>§report_due_date: DateTime<Utc>Trait Implementations§
Source§impl Debug for RgpPollData
impl Debug for RgpPollData
Source§impl<'xml> FromXml<'xml> for RgpPollData
impl<'xml> FromXml<'xml> for RgpPollData
const KIND: Kind = ::instant_xml::Kind::Element
type Accumulator = Option<RgpPollData>
fn matches(id: Id<'_>, field: Option<Id<'_>>) -> bool
fn deserialize<'cx>( into: &mut Self::Accumulator, field: &'static str, deserializer: &mut Deserializer<'cx, 'xml>, ) -> Result<(), Error>
Auto Trait Implementations§
impl Freeze for RgpPollData
impl RefUnwindSafe for RgpPollData
impl Send for RgpPollData
impl Sync for RgpPollData
impl Unpin for RgpPollData
impl UnwindSafe for RgpPollData
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