Struct Endpoint

Source
pub struct Endpoint {
Show 24 fields pub route: String, pub method: String, pub payload_struct: Option<String>, pub query_struct: Option<String>, pub result_ok_status: String, pub result_ko_status: Vec<EndpointStatus>, pub result_struct: String, pub result_multiple: bool, pub result_is_stream: bool, pub extra_header: Vec<Header>, pub extra_action: Option<String>, pub no_auth: bool, pub transform_from: Option<String>, pub cli_route: String, pub cli_help: Option<String>, pub cli_long_help: Option<String>, pub cli_visible_aliases: Option<VecStringWrapper>, pub cli_long_flag_aliases: Option<VecStringWrapper>, pub cli_aliases: Option<VecStringWrapper>, pub cli_short_flag_aliases: Option<VecStringWrapper>, pub cli_no_output: bool, pub cli_output_formats: Option<VecStringWrapper>, pub cli_force_output_format: bool, pub config: Vec<ApiInputConfig>,
}
Expand description

Specify an Http endpoint

Fields§

§route: String

Absolute route as format template Variables are written in curly braces {}.

Examples:

/root/{id}/sub/{arg}
§method: String§payload_struct: Option<String>§query_struct: Option<String>§result_ok_status: String

Expected status if query is ok

§result_ko_status: Vec<EndpointStatus>§result_struct: String§result_multiple: bool

returns a list of results

§result_is_stream: bool

returns a stream of bytes for this endpoint This flag generates the --output arguments. This flag disables the --format arguments.

§extra_header: Vec<Header>

Add extra header to this endpoint.

§extra_action: Option<String>

Action to run on the data returned by the http call. The signature of the action is: (data:R, settings: &Config)-> Result<()> where R is the struct returned by the api.

§no_auth: bool

This endpoint is not authenticated

§transform_from: Option<String>

Transform result from this type.

This type should implement TryFrom for T and Vec<T>.

#[derive(Debug, Deserialize)]
struct ApiResult {
  status: String,
  detail: Option<String>,
  result: Option<Vec<MyStruct>>,
}

impl TryFrom<ApiResult> for Vec<MyStruct> {
  type Error = String;

  fn try_from(value: ApiResult) -> Result<Self, Self::Error> {
      // I don't check errors here...
      Ok(value.result.clone().unwrap_or_default())
  }
}

impl TryFrom<ApiResult> for MyStruct {
  type Error = String;

  fn try_from(value: ApiResult<MyStruct>) -> Result<Self, Self::Error> {
    if value.status == "ERR" {
      Err(value.detail.clone().unwrap_or_default())
    } else {
      let r = value.result.clone().unwrap_or_default();
      if r.is_empty() {
        Ok(MyStruct::default())
      } else {
        Ok(r[0].clone())
      }
    }
  }
}
§cli_route: String

clap route separated by slash (/)

Variables should match the variables declared in the route configuration.

/command/{id}/subcommand/{arg}
§cli_help: Option<String>

Short help string for this endpoint

§cli_long_help: Option<String>

Long help string for this endpoint.

§cli_visible_aliases: Option<VecStringWrapper>§cli_long_flag_aliases: Option<VecStringWrapper>§cli_aliases: Option<VecStringWrapper>§cli_short_flag_aliases: Option<VecStringWrapper>§cli_no_output: bool

This empty have no output to display. It can be combined with the EmptyResponse result structure.

Examples:

endpoint(
  result_ok_status = "NO_CONTENT",
  cli_no_output,
  result_struct = "EmptyResponse",
  route = "...",
  cli_route = "...",
),
§cli_output_formats: Option<VecStringWrapper>§cli_force_output_format: bool

Force the generation of ‘–format’ args in variable sub command. There’s cases where the arg is not generated automatically.

Example:

/route/{var}'

By default, {var} don’t generate --format. If route is just a passthrough, you need the cli_force_output_format to generate the --format args.

§config: Vec<ApiInputConfig>

Trait Implementations§

Source§

impl Clone for Endpoint

Source§

fn clone(&self) -> Endpoint

Returns a duplicate 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 Debug for Endpoint

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Default for Endpoint

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for Endpoint

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl FromMeta for Endpoint

Source§

fn from_list(__items: &[NestedMeta]) -> Result<Self>

Create an instance from a list of nested meta items.
Source§

fn from_nested_meta(item: &NestedMeta) -> Result<Self, Error>

Source§

fn from_meta(item: &Meta) -> Result<Self, Error>

Create an instance from a syn::Meta by dispatching to the format-appropriate trait function. This generally should not be overridden by implementers. Read more
Source§

fn from_none() -> Option<Self>

When a field is omitted from a parent meta-item, from_none is used to attempt recovery before a missing field error is generated. Read more
Source§

fn from_word() -> Result<Self, Error>

Create an instance from the presence of the word in the attribute with no additional options specified.
Source§

fn from_value(value: &Lit) -> Result<Self, Error>

Create an instance from a literal value of either foo = "bar" or foo("bar"). This dispatches to the appropriate method based on the type of literal encountered, and generally should not be overridden by implementers. Read more
Source§

fn from_expr(expr: &Expr) -> Result<Self, Error>

Source§

fn from_char(value: char) -> Result<Self, Error>

Create an instance from a char literal in a value position.
Source§

fn from_string(value: &str) -> Result<Self, Error>

Create an instance from a string literal in a value position.
Source§

fn from_bool(value: bool) -> Result<Self, Error>

Create an instance from a bool literal in a value position.
Source§

impl Serialize for Endpoint

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. 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, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,