pub struct SetInternalData {
pub mcaptcha: HashMap<String, MCaptcha>,
}Expand description
Sets internal Captcha data
Fields§
§mcaptcha: HashMap<String, MCaptcha>Trait Implementations§
Source§impl Handler<SetInternalData> for Master
impl Handler<SetInternalData> for Master
Source§type Result = MessageResult<SetInternalData>
type Result = MessageResult<SetInternalData>
The type of value that this handler will return. Read more
Source§fn handle(
&mut self,
m: SetInternalData,
ctx: &mut Self::Context,
) -> Self::Result
fn handle( &mut self, m: SetInternalData, ctx: &mut Self::Context, ) -> Self::Result
This method is called for every message received by this actor.
Source§impl Handler<SetInternalData> for Master
impl Handler<SetInternalData> for Master
Source§type Result = MessageResult<SetInternalData>
type Result = MessageResult<SetInternalData>
The type of value that this handler will return. Read more
Source§fn handle(
&mut self,
m: SetInternalData,
ctx: &mut Self::Context,
) -> Self::Result
fn handle( &mut self, m: SetInternalData, ctx: &mut Self::Context, ) -> Self::Result
This method is called for every message received by this actor.
Source§impl Message for SetInternalData
impl Message for SetInternalData
Auto Trait Implementations§
impl Freeze for SetInternalData
impl RefUnwindSafe for SetInternalData
impl Send for SetInternalData
impl Sync for SetInternalData
impl Unpin for SetInternalData
impl UnsafeUnpin for SetInternalData
impl UnwindSafe for SetInternalData
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