[][src]Struct kintone_rs::api_client::KintoneAPIClient

pub struct KintoneAPIClient<'a> {
    pub record: Box<Record<'a>>,
}

Fields

record: Box<Record<'a>>

Implementations

impl<'a> KintoneAPIClient<'a>[src]

pub fn new(base_url: &'a str, api_token: &'a str) -> KintoneAPIClient<'a>[src]

constructor for KintoneAPIClient

Arguments

  • base_url - A base URL of your environment. e.g. https://example.kintone.com
  • api_token - A API token for target apps, which can be comma-separated list
use kintone_rs::KintoneAPIClient;
let client = KintoneAPIClient::new("https://example.kintone.com", "some token");

Properties

  • record - A Record client to deal with records

Auto Trait Implementations

impl<'a> RefUnwindSafe for KintoneAPIClient<'a>

impl<'a> Send for KintoneAPIClient<'a>

impl<'a> Sync for KintoneAPIClient<'a>

impl<'a> Unpin for KintoneAPIClient<'a>

impl<'a> UnwindSafe for KintoneAPIClient<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.