pub struct IntegrationLogsRequest<'a> {
pub service_id: Option<&'a str>,
pub app_id: Option<&'a str>,
pub user: Option<&'a str>,
pub change_type: Option<&'a str>,
pub count: Option<u32>,
pub page: Option<u32>,
}Fields§
§service_id: Option<&'a str>Filter logs to this service. Defaults to all logs.
app_id: Option<&'a str>Filter logs to this Slack app. Defaults to all logs.
user: Option<&'a str>Filter logs generated by this user’s actions. Defaults to all logs.
change_type: Option<&'a str>Filter logs with this change type. Defaults to all logs.
count: Option<u32>Number of items to return per page.
page: Option<u32>Page number of results to return.
Trait Implementations§
Source§impl<'a> Clone for IntegrationLogsRequest<'a>
impl<'a> Clone for IntegrationLogsRequest<'a>
Source§fn clone(&self) -> IntegrationLogsRequest<'a>
fn clone(&self) -> IntegrationLogsRequest<'a>
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<'a> Debug for IntegrationLogsRequest<'a>
impl<'a> Debug for IntegrationLogsRequest<'a>
Source§impl<'a> Default for IntegrationLogsRequest<'a>
impl<'a> Default for IntegrationLogsRequest<'a>
Source§fn default() -> IntegrationLogsRequest<'a>
fn default() -> IntegrationLogsRequest<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for IntegrationLogsRequest<'a>
impl<'a> RefUnwindSafe for IntegrationLogsRequest<'a>
impl<'a> Send for IntegrationLogsRequest<'a>
impl<'a> Sync for IntegrationLogsRequest<'a>
impl<'a> Unpin for IntegrationLogsRequest<'a>
impl<'a> UnwindSafe for IntegrationLogsRequest<'a>
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