pub struct GovernedProjectionResponseV1<T> {
pub items: Vec<T>,
pub decisions: Vec<OriginAuthorityDecisionV1>,
}Expand description
Projection rows have no implicit authority. Until an imported projection carries a durable origin label, governed reads return an empty collection plus denial receipts.
Fields§
§items: Vec<T>§decisions: Vec<OriginAuthorityDecisionV1>Trait Implementations§
Source§impl<T: Clone> Clone for GovernedProjectionResponseV1<T>
impl<T: Clone> Clone for GovernedProjectionResponseV1<T>
Source§fn clone(&self) -> GovernedProjectionResponseV1<T>
fn clone(&self) -> GovernedProjectionResponseV1<T>
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 moreSource§impl<T: Debug> Debug for GovernedProjectionResponseV1<T>
impl<T: Debug> Debug for GovernedProjectionResponseV1<T>
Source§impl<'de, T> Deserialize<'de> for GovernedProjectionResponseV1<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for GovernedProjectionResponseV1<T>where
T: Deserialize<'de>,
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<T> Freeze for GovernedProjectionResponseV1<T>
impl<T> RefUnwindSafe for GovernedProjectionResponseV1<T>where
T: RefUnwindSafe,
impl<T> Send for GovernedProjectionResponseV1<T>where
T: Send,
impl<T> Sync for GovernedProjectionResponseV1<T>where
T: Sync,
impl<T> Unpin for GovernedProjectionResponseV1<T>where
T: Unpin,
impl<T> UnsafeUnpin for GovernedProjectionResponseV1<T>
impl<T> UnwindSafe for GovernedProjectionResponseV1<T>where
T: UnwindSafe,
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