pub struct SignInAddress {
subdomain: String,
domain: SignInDomain,
}Expand description
Where an account signs in, such as my.1password.com.
An individual account uses my; a team or business account uses its own name. The domain is a
closed set, so only the subdomain needs checking, and SignInAddress::new is the only way to
build one.
Fields§
§subdomain: String§domain: SignInDomainImplementations§
Source§impl SignInAddress
impl SignInAddress
Sourcepub fn new(
subdomain: &str,
domain: SignInDomain,
) -> Result<SignInAddress, OnePasswordError>
pub fn new( subdomain: &str, domain: SignInDomain, ) -> Result<SignInAddress, OnePasswordError>
Builds an address from an account subdomain, rejecting anything that is not a DNS label.
The subdomain is trimmed and lowercased first, so what a user typed into a sign-in form goes through unchanged.
Sourcepub fn domain(&self) -> SignInDomain
pub fn domain(&self) -> SignInDomain
The domain half of the address.
Trait Implementations§
Source§impl Clone for SignInAddress
impl Clone for SignInAddress
Source§fn clone(&self) -> SignInAddress
fn clone(&self) -> SignInAddress
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 SignInAddress
impl Debug for SignInAddress
Source§impl Display for SignInAddress
impl Display for SignInAddress
impl Eq for SignInAddress
Source§impl PartialEq for SignInAddress
impl PartialEq for SignInAddress
impl StructuralPartialEq for SignInAddress
Auto Trait Implementations§
impl Freeze for SignInAddress
impl RefUnwindSafe for SignInAddress
impl Send for SignInAddress
impl Sync for SignInAddress
impl Unpin for SignInAddress
impl UnsafeUnpin for SignInAddress
impl UnwindSafe for SignInAddress
Blanket Implementations§
§impl<T> AnySync for T
impl<T> AnySync for T
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> CompatExt for T
impl<T> CompatExt for T
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
§fn new_handle(value: Arc<T>) -> Handle
fn new_handle(value: Arc<T>) -> Handle
Create a new handle for an Arc value Read more
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
Clone a handle Read more
§unsafe fn consume_handle(handle: Handle) -> Arc<T> ⓘ
unsafe fn consume_handle(handle: Handle) -> Arc<T> ⓘ
Consume a handle, getting back the initial
Arc<> Read more§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more