pub struct Checksum {
pub name: ContentId,
pub creator: Creator,
pub file: File,
}
Expand description
A checksum for checking that the file has been transferred correctly.
Fields§
§name: ContentId
The identifier of the file transfer content.
creator: Creator
The creator of this file transfer.
file: File
The file being checksummed.
Trait Implementations§
Source§impl FromXml for Checksum
impl FromXml for Checksum
Source§type Builder = ChecksumFromXmlBuilder
type Builder = ChecksumFromXmlBuilder
A builder type used to construct the element. Read more
Source§fn from_events(
name: QName,
attrs: AttrMap,
) -> Result<Self::Builder, FromEventsError>
fn from_events( name: QName, attrs: AttrMap, ) -> Result<Self::Builder, FromEventsError>
Attempt to initiate the streamed construction of this struct from XML. Read more
Auto Trait Implementations§
impl Freeze for Checksum
impl RefUnwindSafe for Checksum
impl Send for Checksum
impl Sync for Checksum
impl Unpin for Checksum
impl UnwindSafe for Checksum
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