pub struct Space {
pub display_name: Option<String>,
pub name: Option<String>,
pub single_user_bot_dm: Option<bool>,
pub threaded: Option<bool>,
pub type_: Option<String>,
}Expand description
A room or DM in Hangouts Chat.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- members get spaces (none)
- members list spaces (none)
- messages attachments get spaces (none)
- messages create spaces (none)
- messages delete spaces (none)
- messages get spaces (none)
- messages update spaces (none)
- get spaces (response)
- list spaces (none)
- webhooks spaces (none)
Fields§
§display_name: Option<String>Output only. The display name (only if the space is a room). Please note that this field might not be populated in direct messages between humans.
name: Option<String>Resource name of the space, in the form “spaces/*”. Example: spaces/AAAAMpdlehYs
single_user_bot_dm: Option<bool>Whether the space is a DM between a bot and a single human.
threaded: Option<bool>Whether the messages are threaded in this space.
type_: Option<String>Output only. The type of a space. This is deprecated. Use single_user_bot_dm instead.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Space
impl<'de> Deserialize<'de> for Space
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>,
Deserialize this value from the given Serde deserializer. Read more
impl Resource for Space
impl ResponseResult for Space
Auto Trait Implementations§
impl Freeze for Space
impl RefUnwindSafe for Space
impl Send for Space
impl Sync for Space
impl Unpin for Space
impl UnwindSafe for Space
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
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>
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