pub struct GeneratePRResponse {
pub pr_number: Option<u64>,
pub pr_url: Option<String>,
pub branch: Option<String>,
pub success: bool,
pub error: Option<String>,
}Expand description
Response for PR generation
Fields§
§pr_number: Option<u64>PR number
pr_url: Option<String>PR URL
branch: Option<String>Branch name
success: boolSuccess status
error: Option<String>Error message (if any)
Trait Implementations§
Source§impl Debug for GeneratePRResponse
impl Debug for GeneratePRResponse
Auto Trait Implementations§
impl Freeze for GeneratePRResponse
impl RefUnwindSafe for GeneratePRResponse
impl Send for GeneratePRResponse
impl Sync for GeneratePRResponse
impl Unpin for GeneratePRResponse
impl UnsafeUnpin for GeneratePRResponse
impl UnwindSafe for GeneratePRResponse
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