pub struct AttachedModuleContent {
pub type: Option<String>,
pub bot_id: String,
pub scopes: Vec<String>,
}Fields§
§type: Option<String>Type
bot_id: StringUser ID of the bot on the attached LINE Official Account
scopes: Vec<String>An array of strings indicating the scope permitted by the admin of the LINE Official Account.
Implementations§
Trait Implementations§
Source§impl Clone for AttachedModuleContent
impl Clone for AttachedModuleContent
Source§fn clone(&self) -> AttachedModuleContent
fn clone(&self) -> AttachedModuleContent
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 AttachedModuleContent
impl Debug for AttachedModuleContent
Source§impl Default for AttachedModuleContent
impl Default for AttachedModuleContent
Source§fn default() -> AttachedModuleContent
fn default() -> AttachedModuleContent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AttachedModuleContent
impl<'de> Deserialize<'de> for AttachedModuleContent
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 AttachedModuleContent
impl PartialEq for AttachedModuleContent
Source§impl Serialize for AttachedModuleContent
impl Serialize for AttachedModuleContent
impl StructuralPartialEq for AttachedModuleContent
Auto Trait Implementations§
impl Freeze for AttachedModuleContent
impl RefUnwindSafe for AttachedModuleContent
impl Send for AttachedModuleContent
impl Sync for AttachedModuleContent
impl Unpin for AttachedModuleContent
impl UnwindSafe for AttachedModuleContent
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