pub struct SyncSdkConfig {
pub api_version: Option<ApiVersion>,
pub config: UploadFile,
pub openapi: Option<UploadFile>,
}Expand description
SyncSdkConfig
Fields§
§api_version: Option<ApiVersion>Can be either the semantic version or a released type (like latest)
config: UploadFileSDK configuration file in .yaml format
openapi: Option<UploadFile>Use api_version in typical use. If this field is supplied, the configuration sync will match the spec rather than any API that lives in Sideko.
Trait Implementations§
Source§impl Clone for SyncSdkConfig
impl Clone for SyncSdkConfig
Source§fn clone(&self) -> SyncSdkConfig
fn clone(&self) -> SyncSdkConfig
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 SyncSdkConfig
impl Debug for SyncSdkConfig
Source§impl Default for SyncSdkConfig
impl Default for SyncSdkConfig
Source§fn default() -> SyncSdkConfig
fn default() -> SyncSdkConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SyncSdkConfig
impl<'de> Deserialize<'de> for SyncSdkConfig
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
Auto Trait Implementations§
impl !Freeze for SyncSdkConfig
impl RefUnwindSafe for SyncSdkConfig
impl Send for SyncSdkConfig
impl Sync for SyncSdkConfig
impl Unpin for SyncSdkConfig
impl UnsafeUnpin for SyncSdkConfig
impl UnwindSafe for SyncSdkConfig
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