pub struct ApiDetailsGitInfo {
pub collection_folder: Option<String>,
pub domain: Option<String>,
pub organization: Option<String>,
pub repository: Option<String>,
pub schema_folder: Option<String>,
}
Fields§
§collection_folder: Option<String>
The API definition’s collection repository folder location.
domain: Option<String>
The domain at which the Git repository is hosted.
organization: Option<String>
The organization that owns the repository.
repository: Option<String>
The repository’s name.
schema_folder: Option<String>
The API definition’s repository folder location. This returns an empty string if the connected repository uses a root file.
Trait Implementations§
Source§impl Clone for ApiDetailsGitInfo
impl Clone for ApiDetailsGitInfo
Source§fn clone(&self) -> ApiDetailsGitInfo
fn clone(&self) -> ApiDetailsGitInfo
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 ApiDetailsGitInfo
impl Debug for ApiDetailsGitInfo
Source§impl<'de> Deserialize<'de> for ApiDetailsGitInfo
impl<'de> Deserialize<'de> for ApiDetailsGitInfo
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 PartialEq for ApiDetailsGitInfo
impl PartialEq for ApiDetailsGitInfo
Source§impl Serialize for ApiDetailsGitInfo
impl Serialize for ApiDetailsGitInfo
impl StructuralPartialEq for ApiDetailsGitInfo
Auto Trait Implementations§
impl Freeze for ApiDetailsGitInfo
impl RefUnwindSafe for ApiDetailsGitInfo
impl Send for ApiDetailsGitInfo
impl Sync for ApiDetailsGitInfo
impl Unpin for ApiDetailsGitInfo
impl UnwindSafe for ApiDetailsGitInfo
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