pub struct AttachModuleResponse {
pub bot_id: String,
pub scopes: Vec<String>,
}
Expand description
AttachModuleResponse : Attach by operation of the module channel provider
Fields§
§bot_id: String
User ID of the bot on the LINE Official Account.
scopes: Vec<String>
Permissions (scope) granted by the LINE Official Account admin.
Implementations§
Trait Implementations§
Source§impl Clone for AttachModuleResponse
impl Clone for AttachModuleResponse
Source§fn clone(&self) -> AttachModuleResponse
fn clone(&self) -> AttachModuleResponse
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 AttachModuleResponse
impl Debug for AttachModuleResponse
Source§impl Default for AttachModuleResponse
impl Default for AttachModuleResponse
Source§fn default() -> AttachModuleResponse
fn default() -> AttachModuleResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AttachModuleResponse
impl<'de> Deserialize<'de> for AttachModuleResponse
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
Source§impl PartialEq for AttachModuleResponse
impl PartialEq for AttachModuleResponse
Source§impl Serialize for AttachModuleResponse
impl Serialize for AttachModuleResponse
impl StructuralPartialEq for AttachModuleResponse
Auto Trait Implementations§
impl Freeze for AttachModuleResponse
impl RefUnwindSafe for AttachModuleResponse
impl Send for AttachModuleResponse
impl Sync for AttachModuleResponse
impl Unpin for AttachModuleResponse
impl UnwindSafe for AttachModuleResponse
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