pub struct PauseRuleResponse {
pub rule_id: String,
pub execution_id: Option<String>,
pub task_name: Option<String>,
pub step_pattern: Option<String>,
pub created_at: DateTime<Utc>,
pub expires_at: Option<DateTime<Utc>>,
pub created_by: Option<String>,
pub deleted_at: Option<DateTime<Utc>>,
}Expand description
Response for a single pause rule.
Fields§
§rule_id: String§execution_id: Option<String>§task_name: Option<String>§step_pattern: Option<String>§created_at: DateTime<Utc>§expires_at: Option<DateTime<Utc>>§created_by: Option<String>§deleted_at: Option<DateTime<Utc>>Trait Implementations§
Source§impl Debug for PauseRuleResponse
impl Debug for PauseRuleResponse
Auto Trait Implementations§
impl Freeze for PauseRuleResponse
impl RefUnwindSafe for PauseRuleResponse
impl Send for PauseRuleResponse
impl Sync for PauseRuleResponse
impl Unpin for PauseRuleResponse
impl UnsafeUnpin for PauseRuleResponse
impl UnwindSafe for PauseRuleResponse
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more