#[non_exhaustive]pub struct AuthorizedDomain {
pub name: String,
pub id: String,
/* private fields */
}Expand description
A domain that a user has been authorized to administer. To authorize use of a domain, verify ownership via Search Console.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringFull path to the AuthorizedDomain resource in the API. Example:
apps/myapp/authorizedDomains/example.com.
@OutputOnly
id: StringFully qualified domain name of the domain authorized for use. Example:
example.com.
Implementations§
Trait Implementations§
Source§impl Clone for AuthorizedDomain
impl Clone for AuthorizedDomain
Source§fn clone(&self) -> AuthorizedDomain
fn clone(&self) -> AuthorizedDomain
Returns a duplicate 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 AuthorizedDomain
impl Debug for AuthorizedDomain
Source§impl Default for AuthorizedDomain
impl Default for AuthorizedDomain
Source§fn default() -> AuthorizedDomain
fn default() -> AuthorizedDomain
Returns the “default value” for a type. Read more
Source§impl Message for AuthorizedDomain
impl Message for AuthorizedDomain
Source§impl PartialEq for AuthorizedDomain
impl PartialEq for AuthorizedDomain
impl StructuralPartialEq for AuthorizedDomain
Auto Trait Implementations§
impl Freeze for AuthorizedDomain
impl RefUnwindSafe for AuthorizedDomain
impl Send for AuthorizedDomain
impl Sync for AuthorizedDomain
impl Unpin for AuthorizedDomain
impl UnwindSafe for AuthorizedDomain
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