pub struct FileEnd {
pub checksum: String,
}Expand description
Sent after a file’s content has been fully streamed.
Carries the SHA-256 hash of the file content so the receiver can verify integrity before acknowledging.
Fields§
§checksum: StringSHA-256 hash of the file content (hex-encoded).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FileEnd
impl<'de> Deserialize<'de> for FileEnd
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 Freeze for FileEnd
impl RefUnwindSafe for FileEnd
impl Send for FileEnd
impl Sync for FileEnd
impl Unpin for FileEnd
impl UnsafeUnpin for FileEnd
impl UnwindSafe for FileEnd
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