pub struct GetFollowersResponse {
pub user_ids: Vec<String>,
pub next: Option<String>,
}
Fields§
§user_ids: Vec<String>
An array of strings indicating user IDs of users that have added the LINE Official Account as a friend. Only users of LINE for iOS and LINE for Android are included in userIds
.
next: Option<String>
A continuation token to get the next array of user IDs. Returned only when there are remaining user IDs that weren’t returned in userIds
in the original request. The number of user IDs in the userIds
element doesn’t have to reach the maximum number specified by limit
for the next
property to be included in the response.
Implementations§
Source§impl GetFollowersResponse
impl GetFollowersResponse
pub fn new(user_ids: Vec<String>) -> GetFollowersResponse
Trait Implementations§
Source§impl Clone for GetFollowersResponse
impl Clone for GetFollowersResponse
Source§fn clone(&self) -> GetFollowersResponse
fn clone(&self) -> GetFollowersResponse
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 GetFollowersResponse
impl Debug for GetFollowersResponse
Source§impl Default for GetFollowersResponse
impl Default for GetFollowersResponse
Source§fn default() -> GetFollowersResponse
fn default() -> GetFollowersResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetFollowersResponse
impl<'de> Deserialize<'de> for GetFollowersResponse
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 GetFollowersResponse
impl PartialEq for GetFollowersResponse
Source§impl Serialize for GetFollowersResponse
impl Serialize for GetFollowersResponse
impl StructuralPartialEq for GetFollowersResponse
Auto Trait Implementations§
impl Freeze for GetFollowersResponse
impl RefUnwindSafe for GetFollowersResponse
impl Send for GetFollowersResponse
impl Sync for GetFollowersResponse
impl Unpin for GetFollowersResponse
impl UnwindSafe for GetFollowersResponse
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