pub struct SlackApiFilesRemoteListRequest {
pub channel: Option<String>,
pub cursor: Option<String>,
pub limit: Option<u32>,
pub ts_from: Option<String>,
pub ts_to: Option<String>,
}Fields§
§channel: Option<String>§cursor: Option<String>§limit: Option<u32>§ts_from: Option<String>§ts_to: Option<String>Trait Implementations§
Source§impl Clone for SlackApiFilesRemoteListRequest
impl Clone for SlackApiFilesRemoteListRequest
Source§fn clone(&self) -> SlackApiFilesRemoteListRequest
fn clone(&self) -> SlackApiFilesRemoteListRequest
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 Default for SlackApiFilesRemoteListRequest
impl Default for SlackApiFilesRemoteListRequest
Source§fn default() -> SlackApiFilesRemoteListRequest
fn default() -> SlackApiFilesRemoteListRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SlackApiFilesRemoteListRequest
impl<'de> Deserialize<'de> for SlackApiFilesRemoteListRequest
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
Auto Trait Implementations§
impl Freeze for SlackApiFilesRemoteListRequest
impl RefUnwindSafe for SlackApiFilesRemoteListRequest
impl Send for SlackApiFilesRemoteListRequest
impl Sync for SlackApiFilesRemoteListRequest
impl Unpin for SlackApiFilesRemoteListRequest
impl UnwindSafe for SlackApiFilesRemoteListRequest
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