fn new()

in issue-bot/src/github.rs [83:94]


    fn new(issue: Issue, comments: Vec<Comment>) -> Self {
        IssueWithComments {
            body: issue.body,
            comments,
            html_url: issue.html_url,
            id: issue.id,
            is_pull_request: issue.pull_request.is_some(),
            number: issue.number,
            title: issue.title,
            url: issue.url,
        }
    }