pub struct Request {
pub service: Service,
pub repo: String,
}Expand description
A parsed SSH_ORIGINAL_COMMAND: what the client asked to run, and on
which repository, before any of it is believed.
Fields§
§service: ServiceWhich of the two services was named.
repo: StringThe repository argument exactly as the client spelled it, still
unvalidated. canonical_repo is what turns it into a name this
node will act on.
Trait Implementations§
impl Eq for Request
impl StructuralPartialEq for Request
Auto Trait Implementations§
impl Freeze for Request
impl RefUnwindSafe for Request
impl Send for Request
impl Sync for Request
impl Unpin for Request
impl UnsafeUnpin for Request
impl UnwindSafe for Request
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