pub struct BranchUpdatedEvent {
pub real_time_pull_request_event: RealTimePullRequestEvent,
pub is_source_update: Option<bool>,
}Expand description
Real time event (SignalR) for a source/target branch update on a pull request
Fields§
§real_time_pull_request_event: RealTimePullRequestEvent§is_source_update: Option<bool>If true, the source branch of the pull request was updated
Implementations§
Trait Implementations§
Source§impl Clone for BranchUpdatedEvent
impl Clone for BranchUpdatedEvent
Source§fn clone(&self) -> BranchUpdatedEvent
fn clone(&self) -> BranchUpdatedEvent
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 BranchUpdatedEvent
impl Debug for BranchUpdatedEvent
Source§impl Default for BranchUpdatedEvent
impl Default for BranchUpdatedEvent
Source§fn default() -> BranchUpdatedEvent
fn default() -> BranchUpdatedEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BranchUpdatedEvent
impl<'de> Deserialize<'de> for BranchUpdatedEvent
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 PartialEq for BranchUpdatedEvent
impl PartialEq for BranchUpdatedEvent
Source§impl Serialize for BranchUpdatedEvent
impl Serialize for BranchUpdatedEvent
impl StructuralPartialEq for BranchUpdatedEvent
Auto Trait Implementations§
impl Freeze for BranchUpdatedEvent
impl RefUnwindSafe for BranchUpdatedEvent
impl Send for BranchUpdatedEvent
impl Sync for BranchUpdatedEvent
impl Unpin for BranchUpdatedEvent
impl UnwindSafe for BranchUpdatedEvent
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