pub enum Terminator {
Raw,
Query,
Header,
Reduced,
}Expand description
Op terminator
Variants§
Raw
Raw ops are stand-alone within a frame.
Query
Query ops, as well as reduced ops following them, create a chunk in a frame.
Header
Header ops, as well as reduced ops following them, create a chunk in a frame.
Reduced
Reduced ops belong to the query/header op before them.
Implementations§
Source§impl Terminator
impl Terminator
Sourcepub fn from_string(inp: &str) -> Result<Terminator, &'static str>
pub fn from_string(inp: &str) -> Result<Terminator, &'static str>
Parse a terminator from inp.
Trait Implementations§
Source§impl Clone for Terminator
impl Clone for Terminator
Source§fn clone(&self) -> Terminator
fn clone(&self) -> Terminator
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Terminator
impl Debug for Terminator
Source§impl Default for Terminator
impl Default for Terminator
Source§fn default() -> Terminator
fn default() -> Terminator
Returns the “default value” for a type. Read more
Source§impl Display for Terminator
impl Display for Terminator
Source§impl PartialEq for Terminator
impl PartialEq for Terminator
impl Copy for Terminator
impl Eq for Terminator
impl StructuralPartialEq for Terminator
Auto Trait Implementations§
impl Freeze for Terminator
impl RefUnwindSafe for Terminator
impl Send for Terminator
impl Sync for Terminator
impl Unpin for Terminator
impl UnwindSafe for Terminator
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