pub struct CommonRemoteRepository {
pub uri: Option<String>,
}Expand description
Common remote repository settings type.
This type is not used in any activity, and only used as part of another schema.
Fields§
§uri: Option<String>Required. A common public repository base for remote repository.
Trait Implementations§
Source§impl Clone for CommonRemoteRepository
impl Clone for CommonRemoteRepository
Source§fn clone(&self) -> CommonRemoteRepository
fn clone(&self) -> CommonRemoteRepository
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 CommonRemoteRepository
impl Debug for CommonRemoteRepository
Source§impl Default for CommonRemoteRepository
impl Default for CommonRemoteRepository
Source§fn default() -> CommonRemoteRepository
fn default() -> CommonRemoteRepository
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CommonRemoteRepository
impl<'de> Deserialize<'de> for CommonRemoteRepository
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 CommonRemoteRepository
impl Serialize for CommonRemoteRepository
impl Part for CommonRemoteRepository
Auto Trait Implementations§
impl Freeze for CommonRemoteRepository
impl RefUnwindSafe for CommonRemoteRepository
impl Send for CommonRemoteRepository
impl Sync for CommonRemoteRepository
impl Unpin for CommonRemoteRepository
impl UnwindSafe for CommonRemoteRepository
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