Struct git_cliff_core::config::Remote
source · pub struct Remote {
pub owner: String,
pub repo: String,
pub token: Option<SecretString>,
}
Expand description
A single remote.
Fields§
§owner: String
Owner of the remote.
repo: String
Repository name.
token: Option<SecretString>
Access token.
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for Remote
impl<'de> Deserialize<'de> for Remote
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 Remote
impl PartialEq for Remote
Auto Trait Implementations§
impl RefUnwindSafe for Remote
impl Send for Remote
impl Sync for Remote
impl Unpin for Remote
impl UnwindSafe for Remote
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