pub struct CppSentinelRecoveredClass {
pub namespace_range: Range,
pub namespace_scope_components: Vec<String>,
pub class_range: Range,
pub scope_components: Vec<String>,
pub owner_ranges: Vec<CppSentinelRecoveredOwner>,
}Fields§
§namespace_range: Range§namespace_scope_components: Vec<String>§class_range: Range§scope_components: Vec<String>Full namespace + class path, e.g. absl,container_internal,btree.
owner_ranges: Vec<CppSentinelRecoveredOwner>Qualified out-of-line member definitions owned by this class. Their
ranges may extend beyond class_range when the malformed sentinel
swallowed the namespace close and left definitions as function siblings.
Trait Implementations§
Source§impl Clone for CppSentinelRecoveredClass
impl Clone for CppSentinelRecoveredClass
Source§fn clone(&self) -> CppSentinelRecoveredClass
fn clone(&self) -> CppSentinelRecoveredClass
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 moreAuto Trait Implementations§
impl Freeze for CppSentinelRecoveredClass
impl RefUnwindSafe for CppSentinelRecoveredClass
impl Send for CppSentinelRecoveredClass
impl Sync for CppSentinelRecoveredClass
impl Unpin for CppSentinelRecoveredClass
impl UnsafeUnpin for CppSentinelRecoveredClass
impl UnwindSafe for CppSentinelRecoveredClass
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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