pub struct Pod {
pub pod_id: String,
pub name: Option<String>,
pub client_id: Option<String>,
pub updated_at: Option<String>,
pub created_at: Option<String>,
}Expand description
A pod, a container that owns inboxes and other resources.
Fields§
§pod_id: StringUnique pod id.
name: Option<String>Human-readable pod name.
client_id: Option<String>Your reference id from creation, when set.
updated_at: Option<String>Timestamp the pod was last updated (RFC 3339).
created_at: Option<String>Timestamp the pod was created (RFC 3339).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Pod
impl<'de> Deserialize<'de> for Pod
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
Auto Trait Implementations§
impl Freeze for Pod
impl RefUnwindSafe for Pod
impl Send for Pod
impl Sync for Pod
impl Unpin for Pod
impl UnsafeUnpin for Pod
impl UnwindSafe for Pod
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