pub struct ActAssignment {
pub schema: ActAssignmentSchema,
pub skill_ref: NonEmptyString,
pub runner: NonEmptyString,
pub source_ref: Option<NonEmptyString>,
pub requested_at: IsoDateTime,
pub host: ActAssignmentHost,
pub input_overrides: Option<JsonObject>,
pub idempotency: ActAssignmentIdempotency,
}Fields§
§schema: ActAssignmentSchema§skill_ref: NonEmptyString§runner: NonEmptyString§source_ref: Option<NonEmptyString>§requested_at: IsoDateTime§host: ActAssignmentHost§input_overrides: Option<JsonObject>§idempotency: ActAssignmentIdempotencyTrait Implementations§
Source§impl Clone for ActAssignment
impl Clone for ActAssignment
Source§fn clone(&self) -> ActAssignment
fn clone(&self) -> ActAssignment
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ActAssignment
impl Debug for ActAssignment
Source§impl<'de> Deserialize<'de> for ActAssignment
impl<'de> Deserialize<'de> for ActAssignment
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
Source§impl PartialEq for ActAssignment
impl PartialEq for ActAssignment
Source§fn eq(&self, other: &ActAssignment) -> bool
fn eq(&self, other: &ActAssignment) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl RunxSchema for ActAssignment
impl RunxSchema for ActAssignment
Source§fn json_schema() -> Value
fn json_schema() -> Value
The inlined JSON Schema for this type.
Source§impl Serialize for ActAssignment
impl Serialize for ActAssignment
impl StructuralPartialEq for ActAssignment
Auto Trait Implementations§
impl Freeze for ActAssignment
impl RefUnwindSafe for ActAssignment
impl Send for ActAssignment
impl Sync for ActAssignment
impl Unpin for ActAssignment
impl UnsafeUnpin for ActAssignment
impl UnwindSafe for ActAssignment
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