pub struct SessionRepoListResponse {
pub repos: Vec<String>,
}Expand description
Repo list response used by server/worker/desktop adapters.
Fields§
§repos: Vec<String>Trait Implementations§
Source§impl Clone for SessionRepoListResponse
impl Clone for SessionRepoListResponse
Source§fn clone(&self) -> SessionRepoListResponse
fn clone(&self) -> SessionRepoListResponse
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 SessionRepoListResponse
impl Debug for SessionRepoListResponse
Source§impl<'de> Deserialize<'de> for SessionRepoListResponse
impl<'de> Deserialize<'de> for SessionRepoListResponse
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 SessionRepoListResponse
impl RefUnwindSafe for SessionRepoListResponse
impl Send for SessionRepoListResponse
impl Sync for SessionRepoListResponse
impl Unpin for SessionRepoListResponse
impl UnsafeUnpin for SessionRepoListResponse
impl UnwindSafe for SessionRepoListResponse
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