pub struct ClientParams {
pub app_id: String,
pub client_key: String,
}
Expand description
TSAR Client options. Pass this into the new()
function of the TSAR Client.
Fields§
§app_id: String
The ID of your TSAR app. Should be in UUID format: 00000000-0000-0000-0000-000000000000
client_key: String
The client decryption key for your TSAR app. Should be in base64 format. Always starts with “MFk…”
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ClientParams
impl RefUnwindSafe for ClientParams
impl Send for ClientParams
impl Sync for ClientParams
impl Unpin for ClientParams
impl UnwindSafe for ClientParams
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