pub struct FileId {
pub array: Array,
pub rekeyed: bool,
}Expand description
The /ID array a save will write, and whether minting it invalidated the
document’s encryption key.
Fields§
§array: ArrayThe two-element array, both elements hex strings of 32 digits.
rekeyed: boolRow 5 of the table above: the file key was rebuilt from a fresh ID[0],
so the original bytes can no longer be appended to and the save must
be a full one.
Trait Implementations§
impl StructuralPartialEq for FileId
Auto Trait Implementations§
impl Freeze for FileId
impl RefUnwindSafe for FileId
impl Send for FileId
impl Sync for FileId
impl Unpin for FileId
impl UnsafeUnpin for FileId
impl UnwindSafe for FileId
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