pub struct RemoteGitProber(/* private fields */);Expand description
A prober that can detect remote Git repositories.
Implementations§
Trait Implementations§
Source§impl Debug for RemoteGitProber
impl Debug for RemoteGitProber
Source§impl<'a, 'py> FromPyObject<'a, 'py> for RemoteGitProber
impl<'a, 'py> FromPyObject<'a, 'py> for RemoteGitProber
Source§impl<'py> IntoPyObject<'py> for RemoteGitProber
impl<'py> IntoPyObject<'py> for RemoteGitProber
Source§type Output = Bound<'py, <RemoteGitProber as IntoPyObject<'py>>::Target>
type Output = Bound<'py, <RemoteGitProber as IntoPyObject<'py>>::Target>
The smart pointer type to use. Read more
Source§type Error = Infallible
type Error = Infallible
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for RemoteGitProber
impl !RefUnwindSafe for RemoteGitProber
impl Send for RemoteGitProber
impl Sync for RemoteGitProber
impl Unpin for RemoteGitProber
impl UnsafeUnpin for RemoteGitProber
impl UnwindSafe for RemoteGitProber
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
Source§impl<'py, T> IntoPyObjectExt<'py> for Twhere
T: IntoPyObject<'py>,
impl<'py, T> IntoPyObjectExt<'py> for Twhere
T: IntoPyObject<'py>,
Source§fn into_bound_py_any(self, py: Python<'py>) -> Result<Bound<'py, PyAny>, PyErr>
fn into_bound_py_any(self, py: Python<'py>) -> Result<Bound<'py, PyAny>, PyErr>
Converts
self into an owned Python object, dropping type information.