pub struct DecodeOptions<'a> {
pub debug_flag: usize,
pub drawer: &'a mut dyn DrawCallback,
pub options: Option<Metadata>,
}Expand description
Decoder call options.
Fields§
§debug_flag: usize§drawer: &'a mut dyn DrawCallback§options: Option<Metadata>Implementations§
Source§impl<'a> DecodeOptions<'a>
impl<'a> DecodeOptions<'a>
pub fn new(drawer: &'a mut dyn DrawCallback) -> Self
Auto Trait Implementations§
impl<'a> Freeze for DecodeOptions<'a>
impl<'a> !RefUnwindSafe for DecodeOptions<'a>
impl<'a> Send for DecodeOptions<'a>
impl<'a> Sync for DecodeOptions<'a>
impl<'a> Unpin for DecodeOptions<'a>
impl<'a> UnsafeUnpin for DecodeOptions<'a>
impl<'a> !UnwindSafe for DecodeOptions<'a>
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