pub struct StreamUri {
pub fragment: String,
pub host: String,
pub path: String,
pub query: HashMap<String, String>,
pub raw: String,
pub scheme: String,
}Fields§
§fragment: String§host: String§path: String§query: HashMap<String, String>§raw: String§scheme: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for StreamUri
impl<'de> Deserialize<'de> for StreamUri
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for StreamUri
Auto Trait Implementations§
impl Freeze for StreamUri
impl RefUnwindSafe for StreamUri
impl Send for StreamUri
impl Sync for StreamUri
impl Unpin for StreamUri
impl UnwindSafe for StreamUri
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