pub struct SigFlags {
pub signatures_exist: bool,
pub append_only: bool,
}Expand description
/SigFlags bit field.
Fields§
§signatures_exist: boolBit 0: at least one signature field exists in the document.
append_only: boolBit 1: incremental updates only — modifying the document outside of new signatures must be done via append.
Trait Implementations§
impl Copy for SigFlags
impl Eq for SigFlags
impl StructuralPartialEq for SigFlags
Auto Trait Implementations§
impl Freeze for SigFlags
impl RefUnwindSafe for SigFlags
impl Send for SigFlags
impl Sync for SigFlags
impl Unpin for SigFlags
impl UnsafeUnpin for SigFlags
impl UnwindSafe for SigFlags
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more