[][src]Struct sanity::SanityConfig

pub struct SanityConfig {
    pub query: Query,
    // some fields omitted
}

Fields

query: Query

Methods

impl SanityConfig[src]

pub fn build_url(&mut self, query: Option<&str>) -> String[src]

pub fn get(&mut self, query: &str) -> Result<Response, Error>[src]

Convenience wrapper for get request


Takes in arg query: &str, which expects GROQ query language (Something like this: *[_type == 'recipe'])

Please note: There is NO syntax checking for GROQ query language at this time, but a macro is in the works

See the sanity docs for more

Example usage:

extern crate sanity;
use sanity::helpers::get_json;

fn main() {
  let mut sn = sanity::create(
    "proj_id",                // Sanity project ID to use
    "data_set",               // Data set to query. i.e. "development"
    "Long_string_for_token",  // Bearer token
    false,                    // Use prod cdn or not
  );
  let res = sn.get(&String::from("*[_type == 'recipe']"));
  if res.is_ok() {
    println!("{:?}", get_json(res.unwrap()));
  }
}

Trait Implementations

impl Clone for SanityConfig[src]

impl Debug for SanityConfig[src]

Auto Trait Implementations

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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

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

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

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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