pub struct ApiRejectContact {
pub contact_req_id: i64,
}Expand description
§Connection commands
These commands may be used to create connections. Most bots do not need to use them - bot users will connect via bot address with auto-accept enabled.
Reject contact request. The user who sent the request is not notified.
Network usage: no.
Syntax:
/_reject <contactReqId>Fields§
§contact_req_id: i64Trait Implementations§
Source§impl Clone for ApiRejectContact
impl Clone for ApiRejectContact
Source§fn clone(&self) -> ApiRejectContact
fn clone(&self) -> ApiRejectContact
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 CommandSyntax for ApiRejectContact
impl CommandSyntax for ApiRejectContact
Source§impl Debug for ApiRejectContact
impl Debug for ApiRejectContact
Source§impl PartialEq for ApiRejectContact
impl PartialEq for ApiRejectContact
impl StructuralPartialEq for ApiRejectContact
Auto Trait Implementations§
impl Freeze for ApiRejectContact
impl RefUnwindSafe for ApiRejectContact
impl Send for ApiRejectContact
impl Sync for ApiRejectContact
impl Unpin for ApiRejectContact
impl UnwindSafe for ApiRejectContact
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