pub struct AllProperties {
pub store: EntryStore,
pub path_property: ArrayProperty,
pub variant_id_property: VariantIdBuilder<EntryType>,
pub content_mimetype_property: ArrayProperty,
pub content_address_property: ContentProperty,
pub redirect_target_property: ArrayProperty,
}Fields§
§store: EntryStore§path_property: ArrayProperty§variant_id_property: VariantIdBuilder<EntryType>§content_mimetype_property: ArrayProperty§content_address_property: ContentProperty§redirect_target_property: ArrayPropertyImplementations§
Source§impl AllProperties
impl AllProperties
pub fn new( store: EntryStore, value_storage: &ValueStorage, ) -> Result<Self, BaseError>
Auto Trait Implementations§
impl Freeze for AllProperties
impl !RefUnwindSafe for AllProperties
impl Send for AllProperties
impl Sync for AllProperties
impl Unpin for AllProperties
impl !UnwindSafe for AllProperties
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more