Enum rspirv::binary::ParseAction
source · pub enum ParseAction {
Continue,
Stop,
Error(Box<dyn Error + Send>),
}
Expand description
Orders consumer sent to the parser after each consuming call.
Variants§
Continue
Continue the parsing
Stop
Normally stop the parsing
Error(Box<dyn Error + Send>)
Error out with the given error
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for Action
impl Send for Action
impl !Sync for Action
impl Unpin for Action
impl !UnwindSafe for Action
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