pub enum Scheme {
Aags,
Apgs,
Aasv,
Apsv,
Upbc,
}Expand description
Scheme identifier for oboron encoding schemes.
Variants§
Implementations§
Source§impl Scheme
impl Scheme
Sourcepub fn is_deterministic(&self) -> bool
pub fn is_deterministic(&self) -> bool
Check if this scheme is deterministic (produces the same output for the same input).
Sourcepub fn is_probabilistic(&self) -> bool
pub fn is_probabilistic(&self) -> bool
Check if this scheme is probabilistic (produces different output each time).
Trait Implementations§
impl Copy for Scheme
impl Eq for Scheme
impl StructuralPartialEq for Scheme
Auto Trait Implementations§
impl Freeze for Scheme
impl RefUnwindSafe for Scheme
impl Send for Scheme
impl Sync for Scheme
impl Unpin for Scheme
impl UnwindSafe for Scheme
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