pub struct ValidatedUri {
pub original: String,
pub scheme: String,
pub is_magnet: bool,
pub is_torrent: bool,
}Fields§
§original: String§scheme: String§is_magnet: bool§is_torrent: boolTrait Implementations§
Source§impl Clone for ValidatedUri
impl Clone for ValidatedUri
Source§fn clone(&self) -> ValidatedUri
fn clone(&self) -> ValidatedUri
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ValidatedUri
impl RefUnwindSafe for ValidatedUri
impl Send for ValidatedUri
impl Sync for ValidatedUri
impl Unpin for ValidatedUri
impl UnsafeUnpin for ValidatedUri
impl UnwindSafe for ValidatedUri
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