pub struct ListAddOnAttachmentsResponse {
pub add_on_attachments: Option<Vec<AddOnAttachment>>,
pub next_page_token: Option<String>,
}Expand description
Response when listing add-on attachments.
§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).
- announcements add on attachments list courses (response)
- course work add on attachments list courses (response)
- course work materials add on attachments list courses (response)
- posts add on attachments list courses (response)
Fields§
§add_on_attachments: Option<Vec<AddOnAttachment>>Attachments under the given post.
next_page_token: Option<String>A token, which can be sent as pageToken to retrieve the next page. If this field is omitted, there are no subsequent pages.
Trait Implementations§
Source§impl Clone for ListAddOnAttachmentsResponse
impl Clone for ListAddOnAttachmentsResponse
Source§fn clone(&self) -> ListAddOnAttachmentsResponse
fn clone(&self) -> ListAddOnAttachmentsResponse
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 ListAddOnAttachmentsResponse
impl Debug for ListAddOnAttachmentsResponse
Source§impl Default for ListAddOnAttachmentsResponse
impl Default for ListAddOnAttachmentsResponse
Source§fn default() -> ListAddOnAttachmentsResponse
fn default() -> ListAddOnAttachmentsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListAddOnAttachmentsResponse
impl<'de> Deserialize<'de> for ListAddOnAttachmentsResponse
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 ResponseResult for ListAddOnAttachmentsResponse
Auto Trait Implementations§
impl Freeze for ListAddOnAttachmentsResponse
impl RefUnwindSafe for ListAddOnAttachmentsResponse
impl Send for ListAddOnAttachmentsResponse
impl Sync for ListAddOnAttachmentsResponse
impl Unpin for ListAddOnAttachmentsResponse
impl UnwindSafe for ListAddOnAttachmentsResponse
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