pub struct CodeScanningId(pub u64);
Tuple Fields§
§0: u64
Implementations§
source§impl CodeScanningId
impl CodeScanningId
pub fn into_inner(self) -> u64
Trait Implementations§
source§impl AsRef<u64> for CodeScanningId
impl AsRef<u64> for CodeScanningId
source§impl Clone for CodeScanningId
impl Clone for CodeScanningId
source§fn clone(&self) -> CodeScanningId
fn clone(&self) -> CodeScanningId
Returns a copy 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 CodeScanningId
impl Debug for CodeScanningId
source§impl Deref for CodeScanningId
impl Deref for CodeScanningId
source§impl DerefMut for CodeScanningId
impl DerefMut for CodeScanningId
source§impl<'de> Deserialize<'de> for CodeScanningId
impl<'de> Deserialize<'de> for CodeScanningId
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
source§impl Display for CodeScanningId
impl Display for CodeScanningId
source§impl From<u64> for CodeScanningId
impl From<u64> for CodeScanningId
source§impl Hash for CodeScanningId
impl Hash for CodeScanningId
source§impl Ord for CodeScanningId
impl Ord for CodeScanningId
source§fn cmp(&self, other: &CodeScanningId) -> Ordering
fn cmp(&self, other: &CodeScanningId) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for CodeScanningId
impl PartialEq for CodeScanningId
source§impl PartialOrd for CodeScanningId
impl PartialOrd for CodeScanningId
source§impl Serialize for CodeScanningId
impl Serialize for CodeScanningId
impl Copy for CodeScanningId
impl Eq for CodeScanningId
impl StructuralPartialEq for CodeScanningId
Auto Trait Implementations§
impl Freeze for CodeScanningId
impl RefUnwindSafe for CodeScanningId
impl Send for CodeScanningId
impl Sync for CodeScanningId
impl Unpin for CodeScanningId
impl UnwindSafe for CodeScanningId
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> FromResponse for Twhere
T: DeserializeOwned,
impl<T> FromResponse for Twhere
T: DeserializeOwned,
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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 moresource§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.