pub enum PlanId {
Id(Uuid),
LastUsed,
Default,
}Expand description
Identifies a plan for use in API requests.
Use PlanId::Id(uuid) for a specific plan, PlanId::LastUsed for the most recently
accessed plan, or PlanId::Default for the default plan.
Variants§
Trait Implementations§
impl Copy for PlanId
Auto Trait Implementations§
impl Freeze for PlanId
impl RefUnwindSafe for PlanId
impl Send for PlanId
impl Sync for PlanId
impl Unpin for PlanId
impl UnsafeUnpin for PlanId
impl UnwindSafe for PlanId
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