pub struct URParseResult<T> {
pub is_multi_part: bool,
pub progress: u8,
pub ur_type: Option<URType>,
pub data: Option<T>,
pub decoder: Option<KeystoneURDecoder>,
}Fields§
§is_multi_part: bool§progress: u8§ur_type: Option<URType>§data: Option<T>§decoder: Option<KeystoneURDecoder>Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for URParseResult<T>where
T: Freeze,
impl<T> RefUnwindSafe for URParseResult<T>where
T: RefUnwindSafe,
impl<T> Send for URParseResult<T>where
T: Send,
impl<T> Sync for URParseResult<T>where
T: Sync,
impl<T> Unpin for URParseResult<T>where
T: Unpin,
impl<T> UnsafeUnpin for URParseResult<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for URParseResult<T>where
T: UnwindSafe,
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