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