pub struct get_jwt;Implementations§
Trait Implementations§
Source§impl ServiceHandler for get_jwt
impl ServiceHandler for get_jwt
fn name(&self) -> &str
fn handle<'life0, 'async_trait>(
&'life0 self,
handle_data: ServiceData,
) -> Pin<Box<dyn Future<Output = Result<ServiceData, (ServiceData, Error)>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn service_type(&self) -> ServiceType
fn is_editable(&self) -> bool
fn current_value<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = EditResult> + Send + 'async_trait>>where
'life0: 'async_trait,
Self: Sync + 'async_trait,
fn update_value<'life0, 'async_trait>(
&'life0 self,
new_value: Vec<u8>,
current_value: Option<Vec<u8>>,
) -> Pin<Box<dyn Future<Output = EditResult> + Send + 'async_trait>>where
'life0: 'async_trait,
Self: Sync + 'async_trait,
Source§impl ServiceRegister for get_jwt
impl ServiceRegister for get_jwt
fn register( self, service_registry: &mut ServiceRegistry, shared_state: Extensions, )
Auto Trait Implementations§
impl Freeze for get_jwt
impl RefUnwindSafe for get_jwt
impl Send for get_jwt
impl Sync for get_jwt
impl Unpin for get_jwt
impl UnsafeUnpin for get_jwt
impl UnwindSafe for get_jwt
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