pub struct ImpactSurfaceQuery {
pub symbol_id: Option<i64>,
pub symbol_path: Option<String>,
pub query: Option<String>,
pub resolution: String,
pub include_tests: bool,
pub include_docs: bool,
pub include_git: bool,
pub include_papertrail: bool,
pub include_text_fallback: bool,
pub include_memories: bool,
}Fields§
§symbol_id: Option<i64>§symbol_path: Option<String>§query: Option<String>§resolution: String§include_tests: bool§include_docs: bool§include_git: bool§include_papertrail: bool§include_text_fallback: bool§include_memories: boolTrait Implementations§
Source§impl Debug for ImpactSurfaceQuery
impl Debug for ImpactSurfaceQuery
Auto Trait Implementations§
impl Freeze for ImpactSurfaceQuery
impl RefUnwindSafe for ImpactSurfaceQuery
impl Send for ImpactSurfaceQuery
impl Sync for ImpactSurfaceQuery
impl Unpin for ImpactSurfaceQuery
impl UnsafeUnpin for ImpactSurfaceQuery
impl UnwindSafe for ImpactSurfaceQuery
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more