pub struct FoldersClient {
pub(crate) client: Client,
}
Expand description
Wrapper for folder specific functionality.
Fields§
§client: Client
Implementations§
Source§impl FoldersClient
impl FoldersClient
Sourcepub fn encrypt(&self, folder_view: FolderView) -> Result<Folder, EncryptError>
pub fn encrypt(&self, folder_view: FolderView) -> Result<Folder, EncryptError>
Encrypt a FolderView to a Folder.
Sourcepub fn decrypt(&self, folder: Folder) -> Result<FolderView, DecryptError>
pub fn decrypt(&self, folder: Folder) -> Result<FolderView, DecryptError>
Encrypt a Folder to FolderView.
Sourcepub fn decrypt_list(
&self,
folders: Vec<Folder>,
) -> Result<Vec<FolderView>, DecryptError>
pub fn decrypt_list( &self, folders: Vec<Folder>, ) -> Result<Vec<FolderView>, DecryptError>
Decrypt a list of Folders to a list of FolderViews.
Sourcepub async fn list(&self) -> Result<Vec<FolderView>, GetFolderError>
pub async fn list(&self) -> Result<Vec<FolderView>, GetFolderError>
Get all folders from state and decrypt them to a list of FolderView.
Sourcepub async fn get(&self, folder_id: &str) -> Result<FolderView, GetFolderError>
pub async fn get(&self, folder_id: &str) -> Result<FolderView, GetFolderError>
Get a specific Folder by its ID from state and decrypt it to a FolderView.
Sourcepub async fn create(
&self,
request: FolderAddEditRequest,
) -> Result<FolderView, CreateFolderError>
pub async fn create( &self, request: FolderAddEditRequest, ) -> Result<FolderView, CreateFolderError>
Create a new Folder and save it to the server.
Sourcepub async fn edit(
&self,
folder_id: &str,
request: FolderAddEditRequest,
) -> Result<FolderView, EditFolderError>
pub async fn edit( &self, folder_id: &str, request: FolderAddEditRequest, ) -> Result<FolderView, EditFolderError>
Edit the Folder and save it to the server.
Source§impl FoldersClient
impl FoldersClient
Sourcefn get_repository(&self) -> Result<Arc<dyn Repository<Folder>>, RepositoryError>
fn get_repository(&self) -> Result<Arc<dyn Repository<Folder>>, RepositoryError>
Helper for getting the repository for folders.
Trait Implementations§
Source§impl From<FoldersClient> for JsValue
impl From<FoldersClient> for JsValue
Source§fn from(value: FoldersClient) -> Self
fn from(value: FoldersClient) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for FoldersClient
impl FromWasmAbi for FoldersClient
Source§impl IntoWasmAbi for FoldersClient
impl IntoWasmAbi for FoldersClient
Source§impl LongRefFromWasmAbi for FoldersClient
impl LongRefFromWasmAbi for FoldersClient
Source§impl OptionFromWasmAbi for FoldersClient
impl OptionFromWasmAbi for FoldersClient
Source§impl OptionIntoWasmAbi for FoldersClient
impl OptionIntoWasmAbi for FoldersClient
Source§impl RefFromWasmAbi for FoldersClient
impl RefFromWasmAbi for FoldersClient
Source§type Anchor = RcRef<FoldersClient>
type Anchor = RcRef<FoldersClient>
The type that holds the reference to
Self
for the duration of the
invocation of the function that has an &Self
parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous.Source§impl RefMutFromWasmAbi for FoldersClient
impl RefMutFromWasmAbi for FoldersClient
Source§impl TryFromJsValue for FoldersClient
impl TryFromJsValue for FoldersClient
Source§impl VectorFromWasmAbi for FoldersClient
impl VectorFromWasmAbi for FoldersClient
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[FoldersClient]>
Source§impl VectorIntoJsValue for FoldersClient
impl VectorIntoJsValue for FoldersClient
fn vector_into_jsvalue(vector: Box<[FoldersClient]>) -> JsValue
Source§impl VectorIntoWasmAbi for FoldersClient
impl VectorIntoWasmAbi for FoldersClient
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[FoldersClient]>) -> Self::Abi
Source§impl WasmDescribe for FoldersClient
impl WasmDescribe for FoldersClient
Source§impl WasmDescribeVector for FoldersClient
impl WasmDescribeVector for FoldersClient
impl SupportsConstructor for FoldersClient
impl SupportsInstanceProperty for FoldersClient
impl SupportsStaticProperty for FoldersClient
Auto Trait Implementations§
impl Freeze for FoldersClient
impl !RefUnwindSafe for FoldersClient
impl Send for FoldersClient
impl Sync for FoldersClient
impl Unpin for FoldersClient
impl !UnwindSafe for FoldersClient
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
§impl<T> CompatExt for T
impl<T> CompatExt for T
§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
§fn new_handle(value: Arc<T>) -> Handle
fn new_handle(value: Arc<T>) -> Handle
Create a new handle for an Arc value Read more
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
Clone a handle Read more
§unsafe fn consume_handle(handle: Handle) -> Arc<T>
unsafe fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<>
Read more§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::Abi
Source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.