Struct remote_settings::client::Client

source ·
pub struct Client { /* private fields */ }
Expand description

A simple HTTP client that can retrieve Remote Settings data using the properties by [ClientConfig]. Methods defined on this will fetch data from <base_url>/v1/buckets/<bucket_name>/collections/<collection_name>/

Implementations§

source§

impl Client

source

pub fn new(config: RemoteSettingsConfig) -> Result<Self>

Create a new Client with properties matching config.

source

pub fn get_records(&self) -> Result<RemoteSettingsResponse>

Fetches all records for a collection that can be found in the server, bucket, and collection defined by the [ClientConfig] used to generate this Client.

source

pub fn get_records_raw(&self) -> Result<Response>

Fetches all records for a collection that can be found in the server, bucket, and collection defined by the [ClientConfig] used to generate this Client. This function will return the raw network [Response].

source

pub fn get_records_since( &self, timestamp: u64 ) -> Result<RemoteSettingsResponse>

Fetches all records that have been published since provided timestamp for a collection that can be found in the server, bucket, and collection defined by the [ClientConfig] used to generate this Client.

source

pub fn get_records_with_options( &self, options: &GetItemsOptions ) -> Result<RemoteSettingsResponse>

Fetches records from this client’s collection with the given options.

source

pub fn get_records_raw_with_options( &self, options: &GetItemsOptions ) -> Result<Response>

Fetches a raw network [Response] for records from this client’s collection with the given options.

source

pub fn get_attachment(&self, attachment_location: &str) -> Result<Vec<u8>>

Downloads an attachment from [attachment_location]. NOTE: there are no guarantees about a maximum size, so use care when fetching potentially large attachments.

source

pub fn get_attachment_raw(&self, attachment_location: &str) -> Result<Response>

Fetches a raw network [Response] for an attachment.

Auto Trait Implementations§

§

impl !Freeze for Client

§

impl !RefUnwindSafe for Client

§

impl Send for Client

§

impl Sync for Client

§

impl Unpin for Client

§

impl UnwindSafe for Client

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, UT> HandleAlloc<UT> for T
where T: Send + Sync,

§

fn new_handle(value: Arc<T>) -> Handle

Create a new handle for an Arc value Read more
§

unsafe fn clone_handle(handle: Handle) -> Handle

Clone a handle Read more
§

unsafe fn consume_handle(handle: Handle) -> Arc<T>

Consume a handle, getting back the initial Arc<> Read more
§

unsafe fn get_arc(handle: Handle) -> Arc<Self>

Get a clone of the Arc<> using a “borrowed” handle. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.