make regen-apis

This commit is contained in:
OMGeeky
2023-10-23 12:55:17 +02:00
parent a4b0f56b8c
commit 4a258a57a6
1025 changed files with 29943 additions and 28980 deletions

View File

@@ -77,7 +77,7 @@ where
}
let mut params = Params::with_capacity(4 + self._additional_params.len());
params.push("name", self._name);
params.push("name", &self._name);
params.extend(self._additional_params.iter());
@@ -369,7 +369,7 @@ where
}
let mut params = Params::with_capacity(4 + self._additional_params.len());
params.push("name", self._name);
params.push("name", &self._name);
params.extend(self._additional_params.iter());

View File

@@ -30,3 +30,6 @@ pub use method_builders::*;
mod call_builders;
pub use call_builders::*;
mod enums;
pub use enums::*;

View File

@@ -117,7 +117,7 @@ pub struct Link {
/// The relationship of the current span relative to the linked span.
#[serde(rename="type")]
pub type_: Option<String>,
pub type_: Option<LinkTypeEnum>,
}
impl client::Part for Link {}
@@ -161,7 +161,7 @@ pub struct MessageEvent {
/// Type of MessageEvent. Indicates whether the message was sent or received.
#[serde(rename="type")]
pub type_: Option<String>,
pub type_: Option<MessageEventTypeEnum>,
/// The number of uncompressed bytes sent or received.
#[serde(rename="uncompressedSizeBytes")]
@@ -238,7 +238,7 @@ pub struct Span {
/// Optional. Distinguishes between spans generated in a particular context. For example, two spans with the same name may be distinguished using `CLIENT` (caller) and `SERVER` (callee) to identify an RPC call.
#[serde(rename="spanKind")]
pub span_kind: Option<String>,
pub span_kind: Option<SpanSpanKindEnum>,
/// Stack trace captured at the start of the span.
#[serde(rename="stackTrace")]