pub struct DeleteUtterancesRequest {
pub bot_name: String,
pub user_id: String,
}Fields§
§bot_name: StringThe name of the bot that stored the utterances.
user_id: StringThe unique identifier for the user that made the utterances. This is the user ID that was sent in the PostContent or PostText operation request that contained the utterance.
Trait Implementations§
Source§impl Clone for DeleteUtterancesRequest
impl Clone for DeleteUtterancesRequest
Source§fn clone(&self) -> DeleteUtterancesRequest
fn clone(&self) -> DeleteUtterancesRequest
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 DeleteUtterancesRequest
impl Debug for DeleteUtterancesRequest
Source§impl Default for DeleteUtterancesRequest
impl Default for DeleteUtterancesRequest
Source§fn default() -> DeleteUtterancesRequest
fn default() -> DeleteUtterancesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteUtterancesRequest
impl PartialEq for DeleteUtterancesRequest
Source§impl Serialize for DeleteUtterancesRequest
impl Serialize for DeleteUtterancesRequest
impl StructuralPartialEq for DeleteUtterancesRequest
Auto Trait Implementations§
impl Freeze for DeleteUtterancesRequest
impl RefUnwindSafe for DeleteUtterancesRequest
impl Send for DeleteUtterancesRequest
impl Sync for DeleteUtterancesRequest
impl Unpin for DeleteUtterancesRequest
impl UnwindSafe for DeleteUtterancesRequest
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