pub enum EnqueueTrust {
Internal,
External,
}Expand description
Trust level for an enqueue / upsert call site.
Variants§
Internal
In-process / bootstrapped callers (may mint elevated actor shapes when policy allows).
External
HTTP admin or other externally reachable surfaces.
Trait Implementations§
Source§impl Clone for EnqueueTrust
impl Clone for EnqueueTrust
Source§fn clone(&self) -> EnqueueTrust
fn clone(&self) -> EnqueueTrust
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 moreimpl Copy for EnqueueTrust
Source§impl Debug for EnqueueTrust
impl Debug for EnqueueTrust
impl Eq for EnqueueTrust
Source§impl PartialEq for EnqueueTrust
impl PartialEq for EnqueueTrust
impl StructuralPartialEq for EnqueueTrust
Auto Trait Implementations§
impl Freeze for EnqueueTrust
impl RefUnwindSafe for EnqueueTrust
impl Send for EnqueueTrust
impl Sync for EnqueueTrust
impl Unpin for EnqueueTrust
impl UnsafeUnpin for EnqueueTrust
impl UnwindSafe for EnqueueTrust
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