pub struct RemoteBindingsBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> RemoteBindingsBuilder<S>
impl<S: State> RemoteBindingsBuilder<S>
Sourcepub fn build(self) -> RemoteBindingswhere
S: IsComplete,
pub fn build(self) -> RemoteBindingswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn grants(
self,
value: Vec<RemoteBindingGrant>,
) -> RemoteBindingsBuilder<SetGrants<S>>where
S::Grants: IsUnset,
pub fn grants(
self,
value: Vec<RemoteBindingGrant>,
) -> RemoteBindingsBuilder<SetGrants<S>>where
S::Grants: IsUnset,
Sourcepub fn maybe_grants(
self,
value: Option<Vec<RemoteBindingGrant>>,
) -> RemoteBindingsBuilder<SetGrants<S>>where
S::Grants: IsUnset,
pub fn maybe_grants(
self,
value: Option<Vec<RemoteBindingGrant>>,
) -> RemoteBindingsBuilder<SetGrants<S>>where
S::Grants: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for RemoteBindingsBuilder<S>
impl<S> RefUnwindSafe for RemoteBindingsBuilder<S>
impl<S> Send for RemoteBindingsBuilder<S>
impl<S> Sync for RemoteBindingsBuilder<S>
impl<S> Unpin for RemoteBindingsBuilder<S>
impl<S> UnsafeUnpin for RemoteBindingsBuilder<S>
impl<S> UnwindSafe for RemoteBindingsBuilder<S>
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