pub struct UsersWhoCanRead<L> {
pub users: HashSet<User>,
pub depends_on: Vec<ObjectId>,
pub locks: Vec<L>,
}
Fields§
§users: HashSet<User>
§depends_on: Vec<ObjectId>
§locks: Vec<L>
Auto Trait Implementations§
impl<L> Freeze for UsersWhoCanRead<L>
impl<L> RefUnwindSafe for UsersWhoCanRead<L>where
L: RefUnwindSafe,
impl<L> Send for UsersWhoCanRead<L>where
L: Send,
impl<L> Sync for UsersWhoCanRead<L>where
L: Sync,
impl<L> Unpin for UsersWhoCanRead<L>where
L: Unpin,
impl<L> UnwindSafe for UsersWhoCanRead<L>where
L: 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