pub struct RemoteSessionRepository {
pub branch: Option<String>,
pub name: String,
pub owner: String,
}Expand description
Repository context for the remote session.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§branch: Option<String>Optional branch associated with the remote session.
name: StringRepository name.
owner: StringRepository owner or organization login.
Trait Implementations§
Source§impl Clone for RemoteSessionRepository
impl Clone for RemoteSessionRepository
Source§fn clone(&self) -> RemoteSessionRepository
fn clone(&self) -> RemoteSessionRepository
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RemoteSessionRepository
impl Debug for RemoteSessionRepository
Source§impl Default for RemoteSessionRepository
impl Default for RemoteSessionRepository
Source§fn default() -> RemoteSessionRepository
fn default() -> RemoteSessionRepository
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RemoteSessionRepository
impl<'de> Deserialize<'de> for RemoteSessionRepository
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 RemoteSessionRepository
impl RefUnwindSafe for RemoteSessionRepository
impl Send for RemoteSessionRepository
impl Sync for RemoteSessionRepository
impl Unpin for RemoteSessionRepository
impl UnsafeUnpin for RemoteSessionRepository
impl UnwindSafe for RemoteSessionRepository
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