pub struct CreatePod {
pub name: Option<String>,
pub client_id: Option<String>,
}Expand description
Request body for create_pod. All fields optional.
Fields§
§name: Option<String>Human-readable pod name.
client_id: Option<String>Your own idempotency/reference id for this pod.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CreatePod
impl RefUnwindSafe for CreatePod
impl Send for CreatePod
impl Sync for CreatePod
impl Unpin for CreatePod
impl UnsafeUnpin for CreatePod
impl UnwindSafe for CreatePod
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