pub struct PullRequestId(pub u64);Tuple Fields§
§0: u64Implementations§
Source§impl PullRequestId
impl PullRequestId
pub fn into_inner(self) -> u64
Trait Implementations§
Source§impl AsRef<u64> for PullRequestId
impl AsRef<u64> for PullRequestId
Source§impl Clone for PullRequestId
impl Clone for PullRequestId
Source§fn clone(&self) -> PullRequestId
fn clone(&self) -> PullRequestId
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 moreimpl Copy for PullRequestId
Source§impl Debug for PullRequestId
impl Debug for PullRequestId
Source§impl Deref for PullRequestId
impl Deref for PullRequestId
Source§impl DerefMut for PullRequestId
impl DerefMut for PullRequestId
Source§impl<'de> Deserialize<'de> for PullRequestId
impl<'de> Deserialize<'de> for PullRequestId
Source§fn deserialize<D>(
deserializer: D,
) -> Result<PullRequestId, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<PullRequestId, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for PullRequestId
impl Display for PullRequestId
impl Eq for PullRequestId
Source§impl From<PullRequestId> for IssueId
impl From<PullRequestId> for IssueId
Source§fn from(v: PullRequestId) -> IssueId
fn from(v: PullRequestId) -> IssueId
Converts to this type from the input type.
Source§impl From<u64> for PullRequestId
impl From<u64> for PullRequestId
Source§fn from(value: u64) -> PullRequestId
fn from(value: u64) -> PullRequestId
Converts to this type from the input type.
Source§impl Hash for PullRequestId
impl Hash for PullRequestId
Source§impl Ord for PullRequestId
impl Ord for PullRequestId
Source§fn cmp(&self, other: &PullRequestId) -> Ordering
fn cmp(&self, other: &PullRequestId) -> Ordering
1.21.0 (const: unstable) · 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 PullRequestId
impl PartialEq for PullRequestId
Source§impl PartialOrd for PullRequestId
impl PartialOrd for PullRequestId
Source§impl Serialize for PullRequestId
impl Serialize for PullRequestId
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for PullRequestId
Auto Trait Implementations§
impl Freeze for PullRequestId
impl RefUnwindSafe for PullRequestId
impl Send for PullRequestId
impl Sync for PullRequestId
impl Unpin for PullRequestId
impl UnsafeUnpin for PullRequestId
impl UnwindSafe for PullRequestId
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> FromResponse for Twhere
T: DeserializeOwned,
impl<T> FromResponse for Twhere
T: DeserializeOwned,
impl<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
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.