pub struct GetLogsOfWebhookTaskParams {
pub project_name_or_id: String,
pub webhook_policy_id: i64,
pub execution_id: i32,
pub task_id: i32,
pub x_request_id: Option<String>,
pub x_is_resource_name: Option<bool>,
}Expand description
struct for passing parameters to the method get_logs_of_webhook_task
Fields§
§project_name_or_id: StringThe name or id of the project
webhook_policy_id: i64The ID of the webhook policy
execution_id: i32Execution ID
task_id: i32Task ID
x_request_id: Option<String>An unique ID for the request
x_is_resource_name: Option<bool>The flag to indicate whether the parameter which supports both name and id in the path is the name of the resource. When the X-Is-Resource-Name is false and the parameter can be converted to an integer, the parameter will be as an id, otherwise, it will be as a name.
Trait Implementations§
Source§impl Clone for GetLogsOfWebhookTaskParams
impl Clone for GetLogsOfWebhookTaskParams
Source§fn clone(&self) -> GetLogsOfWebhookTaskParams
fn clone(&self) -> GetLogsOfWebhookTaskParams
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 moreAuto Trait Implementations§
impl Freeze for GetLogsOfWebhookTaskParams
impl RefUnwindSafe for GetLogsOfWebhookTaskParams
impl Send for GetLogsOfWebhookTaskParams
impl Sync for GetLogsOfWebhookTaskParams
impl Unpin for GetLogsOfWebhookTaskParams
impl UnwindSafe for GetLogsOfWebhookTaskParams
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