Struct pixelast::PixelaClient[][src]

pub struct PixelaClient { /* fields omitted */ }

A PixelaClient to request to Pixela with.

Methods

impl PixelaClient
[src]

Constructs a new PixelaClient.

This method does not verify authentication.

Create a new Pixela user.

Errors

This method fails when request not success in Pixela.

Updates the authentication token for the specified user.

Errors

This method fails when request not success in Pixela.

Deletes the specified registered user.

Errors

This method fails when request not success in Pixela.

Create a new pixelation graph definition.

Errors

This method fails when request not success in Pixela.

Get all predefined pixelation graph definitions.

Errors

This method fails when request not success in Pixela.

Based on the registered information, express the graph in SVG format diagram.

Errors

This method fails when request not success in Pixela.

Update predefined pixelation graph definitions. The items that can be updated are limited as compared with the pixelation graph definition creation.

Errors

This method fails when request not success in Pixela.

Delete the predefined pixelation graph definition.

Errors

This method fails when request not success in Pixela.

It records the quantity of the specified date as a "Pixel".

Errors

This method fails when request not success in Pixela.

Get registered quantity as "Pixel".

Errors

This method fails when request not success in Pixela.

Update the quantity already registered as a "Pixel".

Errors

This method fails when request not success in Pixela.

Delete the registered "Pixel".

Errors

This method fails when request not success in Pixela.

Increment quantity "Pixel" of the day (UTC). If the graph type is int then 1 added, and for float then 0.01 added.

Errors

This method fails when request not success in Pixela.

Decrement quantity "Pixel" of the day (UTC). If the graph type is int then -1 added, and for float then -0.01 added.

Errors

This method fails when request not success in Pixela.

Auto Trait Implementations