pub struct SubstrateUrl {
pub name: String,
pub url: String,
pub auth: Option<bool>,
}Expand description
A URL the substrate reported for one workspace endpoint.
Fields§
§name: String§url: String§auth: Option<bool>Whether the substrate reports the URL is fronted with auth (design
D-E — recorded, never disabled). None = the substrate did not say.
Trait Implementations§
Source§impl Clone for SubstrateUrl
impl Clone for SubstrateUrl
Source§fn clone(&self) -> SubstrateUrl
fn clone(&self) -> SubstrateUrl
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 moreSource§impl Debug for SubstrateUrl
impl Debug for SubstrateUrl
impl Eq for SubstrateUrl
Source§impl PartialEq for SubstrateUrl
impl PartialEq for SubstrateUrl
impl StructuralPartialEq for SubstrateUrl
Auto Trait Implementations§
impl Freeze for SubstrateUrl
impl RefUnwindSafe for SubstrateUrl
impl Send for SubstrateUrl
impl Sync for SubstrateUrl
impl Unpin for SubstrateUrl
impl UnsafeUnpin for SubstrateUrl
impl UnwindSafe for SubstrateUrl
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