Struct NominalSeriesServiceAsyncClient

Source
pub struct NominalSeriesServiceAsyncClient<T>(/* private fields */);
Expand description

Create and fetch series stored by Nominal. This service is deprecated.

Implementations§

Source§

impl<T> NominalSeriesServiceAsyncClient<T>
where T: AsyncClient,

Source

pub async fn get( &self, auth_: &BearerToken, rid: &NominalSeriesRid, ) -> Result<NominalSeries, Error>

👎Deprecated: Deprecated with no replacement.

Retrieves a series for the given series RID.

Source

pub async fn batch_get( &self, auth_: &BearerToken, rids: &BTreeSet<NominalSeriesRid>, ) -> Result<BTreeSet<NominalSeries>, Error>

👎Deprecated: Deprecated with no replacement.

Retrieves series for the given series RIDs. Excludes series that do not exist or are unauthorized. A maximum of 1000 rids can be requested.

Source

pub async fn batch_get_by_channel_and_tags( &self, auth_: &BearerToken, request: &BTreeSet<GetSeriesByChannelAndTagsRequest>, ) -> Result<BTreeSet<NominalSeries>, Error>

👎Deprecated: Deprecated with no replacement.

Retrieves series that match the requested data source, channel name and tags exactly. Omits series that do not exist or are unauthorized. A maximum of 1000 rids can be requested.

Source

pub async fn create_or_get( &self, auth_: &BearerToken, request: &CreateSeriesRequest, ) -> Result<NominalSeries, Error>

👎Deprecated: Deprecated with no replacement.

Creates a new series if it doesn’t already exist.

A series exists if there is already a series with the same channel name and tag values in the data source. Returns the series that was created or the existing series.

Source

pub async fn batch_create_or_get( &self, auth_: &BearerToken, request: &[CreateSeriesRequest], ) -> Result<Vec<NominalSeries>, Error>

👎Deprecated: use batchCreateOrGetV2
Source

pub async fn batch_create_or_get_v2( &self, auth_: &BearerToken, request: &[CreateSeriesRequest], ) -> Result<BatchCreateOrGetResponse, Error>

👎Deprecated: Deprecated with no replacement.

Creates new series if they don’t already exist.

A series exists if there is already a series with the same channel name and tag values in the data source. Returns series that were created and any existing series.

Source

pub async fn update_last_touched_at( &self, auth_: &BearerToken, request: &BatchUpdateLastTouchedAtRequest, ) -> Result<(), Error>

👎Deprecated: Deprecated with no replacement.

Updates the last touched at time for series. The last touched at time represents the last time a series had data written to it.

Source

pub async fn search( &self, auth_: &BearerToken, request: &SearchSeriesRequest, ) -> Result<SearchSeriesResponse, Error>

👎Deprecated: Deprecated with no replacement.

Retrieves series that match the search query.

Trait Implementations§

Source§

impl<T> AsyncService<T> for NominalSeriesServiceAsyncClient<T>
where T: AsyncClient,

Source§

fn new(client: T) -> Self

Creates a new service wrapping an async HTTP client.
Source§

impl<T: Clone> Clone for NominalSeriesServiceAsyncClient<T>

Source§

fn clone(&self) -> NominalSeriesServiceAsyncClient<T>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T: Debug> Debug for NominalSeriesServiceAsyncClient<T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

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>,

Source§

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.