pub struct FocusAppInput {
pub chat_id: Option<String>,
pub message_id: Option<String>,
pub draft: Option<String>,
}Expand description
Input for focusing the app
Fields§
§chat_id: Option<String>Chat ID to navigate to
message_id: Option<String>Message ID to navigate to
draft: Option<String>Draft text to pre-fill
Trait Implementations§
Source§impl Clone for FocusAppInput
impl Clone for FocusAppInput
Source§fn clone(&self) -> FocusAppInput
fn clone(&self) -> FocusAppInput
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 FocusAppInput
impl Debug for FocusAppInput
Source§impl<'de> Deserialize<'de> for FocusAppInput
impl<'de> Deserialize<'de> for FocusAppInput
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
Auto Trait Implementations§
impl Freeze for FocusAppInput
impl RefUnwindSafe for FocusAppInput
impl Send for FocusAppInput
impl Sync for FocusAppInput
impl Unpin for FocusAppInput
impl UnwindSafe for FocusAppInput
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