pub struct UrlAuthority {
pub user_info: Option<UrlUserInfo>,
pub host: String,
pub port: Option<usize>,
}
Fields§
§user_info: Option<UrlUserInfo>
§host: String
§port: Option<usize>
Trait Implementations§
Source§impl Clone for UrlAuthority
impl Clone for UrlAuthority
Source§fn clone(&self) -> UrlAuthority
fn clone(&self) -> UrlAuthority
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UrlAuthority
impl Debug for UrlAuthority
Source§impl PartialEq for UrlAuthority
impl PartialEq for UrlAuthority
impl Eq for UrlAuthority
impl StructuralPartialEq for UrlAuthority
Auto Trait Implementations§
impl Freeze for UrlAuthority
impl RefUnwindSafe for UrlAuthority
impl Send for UrlAuthority
impl Sync for UrlAuthority
impl Unpin for UrlAuthority
impl UnwindSafe for UrlAuthority
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