pub struct Header<E = ()> {
pub version: Version,
pub exporter_rp_id: String,
pub exporter_display_name: String,
pub timestamp: u64,
pub accounts: Vec<Account<E>>,
}Fields§
§version: VersionThe version of the format definition contained within this exchange payload. The version MUST correspond to a published level of the CXF standard.
exporter_rp_id: StringThe name of the exporting app as a relying party identifier.
exporter_display_name: StringThe display name of the exporting app to be presented to the user.
timestamp: u64The UNIX timestamp during at which the export document was completed.
accounts: Vec<Account<E>>The list of Accounts being exported.
Trait Implementations§
Source§impl<'de, E> Deserialize<'de> for Header<E>where
E: Deserialize<'de>,
impl<'de, E> Deserialize<'de> for Header<E>where
E: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl<E> Freeze for Header<E>
impl<E> RefUnwindSafe for Header<E>where
E: RefUnwindSafe,
impl<E> Send for Header<E>where
E: Send,
impl<E> Sync for Header<E>where
E: Sync,
impl<E> Unpin for Header<E>where
E: Unpin,
impl<E> UnwindSafe for Header<E>where
E: UnwindSafe,
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