TestObjectFull

Struct TestObjectFull 

Source
pub struct TestObjectFull {
    pub name: SearchableString,
    pub deps: Vec<DbPtr<TestObjectFull>>,
    pub bins: Vec<BinPtr>,
    pub users: BTreeSet<User>,
}

Fields§

§name: SearchableString§deps: Vec<DbPtr<TestObjectFull>>§bins: Vec<BinPtr>§users: BTreeSet<User>

Implementations§

Source§

impl TestObjectFull

Source

pub fn standardize(&mut self, self_id: ObjectId)

Trait Implementations§

Source§

impl<'arbitrary> Arbitrary<'arbitrary> for TestObjectFull

Source§

fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>

Generate an arbitrary value of Self from the given unstructured data. Read more
Source§

fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>

Generate an arbitrary value of Self from the entirety of the given unstructured data. Read more
Source§

fn size_hint(depth: usize) -> (usize, Option<usize>)

Get a size hint for how many bytes out of an Unstructured this type needs to construct itself. Read more
Source§

fn try_size_hint( depth: usize, ) -> Result<(usize, Option<usize>), MaxRecursionReached>

Get a size hint for how many bytes out of an Unstructured this type needs to construct itself. Read more
Source§

impl Clone for TestObjectFull

Source§

fn clone(&self) -> TestObjectFull

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for TestObjectFull

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl DeepSizeOf for TestObjectFull

Source§

fn deep_size_of_children(&self, context: &mut Context) -> usize

Returns an estimation of the heap-managed storage of this object. This does not include the size of the object itself. Read more
Source§

fn deep_size_of(&self) -> usize

Returns an estimation of a total size of memory owned by the object, including heap-managed storage. Read more
Source§

impl<'de> Deserialize<'de> for TestObjectFull

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Object for TestObjectFull

Source§

type Event = TestEventFull

Note that due to postgresql limitations reasons, this type MUST NOT include any null byte in the serialized JSON. Trying to submit one such event will result in the event being rejected by the server.
Source§

fn type_ulid() -> &'static TypeId

Source§

async fn can_create<'a, C: CanDoCallbacks>( &'a self, _user: User, self_id: ObjectId, _db: &'a C, ) -> Result<bool>

Source§

async fn can_apply<'a, C: CanDoCallbacks>( &'a self, _user: User, _self_id: ObjectId, _event: &'a Self::Event, _db: &'a C, ) -> Result<bool>

Note that permissions are always checked with the latest version of the object on the server. So, due to this, CRDB objects are not strictly speaking a CRDT. However, it is required to do so for security, because otherwise a user who lost permissions would still be allowed to submit events antidated to before the permission loss, which would be bad as users could re-grant themselves permissions.
Source§

fn users_who_can_read<'a, C: CanDoCallbacks>( &'a self, db: &'a C, ) -> impl 'a + Future<Output = Result<HashSet<User>>>

Note that db.get calls will be cached. So: Read more
Source§

fn apply(&mut self, self_id: DbPtr<TestObjectFull>, event: &Self::Event)

Source§

fn required_binaries(&self) -> Vec<BinPtr>

Source§

fn snapshot_version() -> i32

Source§

fn from_old_snapshot(version: i32, data: Value) -> Result<Self, Error>

Parse this object type from an older snapshot version Read more
Source§

impl PartialEq for TestObjectFull

Source§

fn eq(&self, other: &TestObjectFull) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for TestObjectFull

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Eq for TestObjectFull

Source§

impl StructuralPartialEq for TestObjectFull

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DynSized for T
where T: 'static + Any + Send + Sync + DeepSizeOf,

Source§

fn arc_to_any(self: Arc<T>) -> Arc<dyn Any + Sync + Send>

Source§

fn ref_to_any(&self) -> &(dyn Any + Sync + Send + 'static)

Source§

fn deep_size_of(&self) -> usize

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T

Source§

impl<T> Send for T
where T: Send,

Source§

impl<T> Sync for T
where T: Sync,