pub struct RemoveCaptcha(pub String);Expand description
Message to delete [Counter] actor
Tuple Fields§
§0: StringTrait Implementations§
Source§impl Clone for RemoveCaptcha
impl Clone for RemoveCaptcha
Source§fn clone(&self) -> RemoveCaptcha
fn clone(&self) -> RemoveCaptcha
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RemoveCaptcha
impl Debug for RemoveCaptcha
Source§impl<'de> Deserialize<'de> for RemoveCaptcha
impl<'de> Deserialize<'de> for RemoveCaptcha
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Handler<RemoveCaptcha> for Master
impl Handler<RemoveCaptcha> for Master
Source§type Result = MessageResult<RemoveCaptcha>
type Result = MessageResult<RemoveCaptcha>
The type of value that this handler will return. Read more
Source§fn handle(&mut self, m: RemoveCaptcha, ctx: &mut Self::Context) -> Self::Result
fn handle(&mut self, m: RemoveCaptcha, ctx: &mut Self::Context) -> Self::Result
This method is called for every message received by this actor.
Source§impl Handler<RemoveCaptcha> for Master
impl Handler<RemoveCaptcha> for Master
Source§type Result = MessageResult<RemoveCaptcha>
type Result = MessageResult<RemoveCaptcha>
The type of value that this handler will return. Read more
Source§fn handle(&mut self, m: RemoveCaptcha, ctx: &mut Self::Context) -> Self::Result
fn handle(&mut self, m: RemoveCaptcha, ctx: &mut Self::Context) -> Self::Result
This method is called for every message received by this actor.
Source§impl Message for RemoveCaptcha
impl Message for RemoveCaptcha
Auto Trait Implementations§
impl Freeze for RemoveCaptcha
impl RefUnwindSafe for RemoveCaptcha
impl Send for RemoveCaptcha
impl Sync for RemoveCaptcha
impl Unpin for RemoveCaptcha
impl UnsafeUnpin for RemoveCaptcha
impl UnwindSafe for RemoveCaptcha
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