pub struct FindTicketByIdParams {
pub ticket_id: String,
}
Expand description
struct for passing parameters to the method [find_ticket_by_id
]
Fields§
§ticket_id: String
Implementations§
Source§impl FindTicketByIdParams
impl FindTicketByIdParams
Sourcepub fn builder() -> FindTicketByIdParamsBuilder
pub fn builder() -> FindTicketByIdParamsBuilder
Create an instance of FindTicketByIdParams
using the builder syntax
Trait Implementations§
Source§impl Clone for FindTicketByIdParams
impl Clone for FindTicketByIdParams
Source§fn clone(&self) -> FindTicketByIdParams
fn clone(&self) -> FindTicketByIdParams
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 moreAuto Trait Implementations§
impl Freeze for FindTicketByIdParams
impl RefUnwindSafe for FindTicketByIdParams
impl Send for FindTicketByIdParams
impl Sync for FindTicketByIdParams
impl Unpin for FindTicketByIdParams
impl UnwindSafe for FindTicketByIdParams
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