pub struct ActivityTypeDetail {
pub configuration: ActivityTypeConfiguration,
pub type_info: ActivityTypeInfo,
}
Expand description
Detailed information about an activity type.
Fields§
§configuration: ActivityTypeConfiguration
The configuration settings registered with the activity type.
type_info: ActivityTypeInfo
General information about the activity type.
The status of activity type (returned in the ActivityTypeInfo structure) can be one of the following.
-
REGISTERED
– The type is registered and available. Workers supporting this type should be running. -
DEPRECATED
– The type was deprecated using DeprecateActivityType, but is still in use. You should keep workers supporting this type running. You cannot create new tasks of this type.
Trait Implementations§
Source§impl Clone for ActivityTypeDetail
impl Clone for ActivityTypeDetail
Source§fn clone(&self) -> ActivityTypeDetail
fn clone(&self) -> ActivityTypeDetail
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 Debug for ActivityTypeDetail
impl Debug for ActivityTypeDetail
Source§impl Default for ActivityTypeDetail
impl Default for ActivityTypeDetail
Source§fn default() -> ActivityTypeDetail
fn default() -> ActivityTypeDetail
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActivityTypeDetail
impl<'de> Deserialize<'de> for ActivityTypeDetail
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 ActivityTypeDetail
impl PartialEq for ActivityTypeDetail
impl StructuralPartialEq for ActivityTypeDetail
Auto Trait Implementations§
impl Freeze for ActivityTypeDetail
impl RefUnwindSafe for ActivityTypeDetail
impl Send for ActivityTypeDetail
impl Sync for ActivityTypeDetail
impl Unpin for ActivityTypeDetail
impl UnwindSafe for ActivityTypeDetail
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