pub struct CommitSchemaRequest {
pub schema: Option<Schema>,
}Expand description
Request for CommitSchema method.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- schemas commit projects (request)
Fields§
§schema: Option<Schema>Required. The schema revision to commit.
Trait Implementations§
Source§impl Clone for CommitSchemaRequest
impl Clone for CommitSchemaRequest
Source§fn clone(&self) -> CommitSchemaRequest
fn clone(&self) -> CommitSchemaRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CommitSchemaRequest
impl Debug for CommitSchemaRequest
Source§impl Default for CommitSchemaRequest
impl Default for CommitSchemaRequest
Source§fn default() -> CommitSchemaRequest
fn default() -> CommitSchemaRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CommitSchemaRequest
impl<'de> Deserialize<'de> for CommitSchemaRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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 Serialize for CommitSchemaRequest
impl Serialize for CommitSchemaRequest
impl RequestValue for CommitSchemaRequest
Auto Trait Implementations§
impl Freeze for CommitSchemaRequest
impl RefUnwindSafe for CommitSchemaRequest
impl Send for CommitSchemaRequest
impl Sync for CommitSchemaRequest
impl Unpin for CommitSchemaRequest
impl UnwindSafe for CommitSchemaRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more