pub struct Member {
pub delivery_settings: String,
pub email: String,
pub etag: String,
pub id: String,
pub kind: String,
pub role: String,
pub status: String,
pub type_: String,
}
Expand description
A Google Groups member can be a user or another group. This member can be inside or outside of your account’s domains. For more information about common group member tasks, see the Developer’s Guide.
Fields§
§delivery_settings: String
A Google Groups member can be a user or another group. This member can be inside or outside of your account’s domains. For more information about common group member tasks, see the Developer’s Guide.
email: String
A Google Groups member can be a user or another group. This member can be inside or outside of your account’s domains. For more information about common group member tasks, see the Developer’s Guide.
etag: String
A Google Groups member can be a user or another group. This member can be inside or outside of your account’s domains. For more information about common group member tasks, see the Developer’s Guide.
id: String
A Google Groups member can be a user or another group. This member can be inside or outside of your account’s domains. For more information about common group member tasks, see the Developer’s Guide.
kind: String
A Google Groups member can be a user or another group. This member can be inside or outside of your account’s domains. For more information about common group member tasks, see the Developer’s Guide.
role: String
A Google Groups member can be a user or another group. This member can be inside or outside of your account’s domains. For more information about common group member tasks, see the Developer’s Guide.
status: String
A Google Groups member can be a user or another group. This member can be inside or outside of your account’s domains. For more information about common group member tasks, see the Developer’s Guide.
type_: String
A Google Groups member can be a user or another group. This member can be inside or outside of your account’s domains. For more information about common group member tasks, see the Developer’s Guide.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Member
impl<'de> Deserialize<'de> for Member
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>,
Source§impl JsonSchema for Member
impl JsonSchema for Member
Source§fn schema_name() -> String
fn schema_name() -> String
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref
keyword. Read moreimpl StructuralPartialEq for Member
Auto Trait Implementations§
impl Freeze for Member
impl RefUnwindSafe for Member
impl Send for Member
impl Sync for Member
impl Unpin for Member
impl UnwindSafe for Member
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> 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>
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>
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