diff --git a/f3_rs/all.html b/f3_rs/all.html index dc4059f..f4b530b 100644 --- a/f3_rs/all.html +++ b/f3_rs/all.html @@ -3,5 +3,5 @@

List of all items

Structs

Enums

+

Crate f3_rs

List of all items

Structs

Enums

\ No newline at end of file diff --git a/f3_rs/enum.OpenCloseState.html b/f3_rs/enum.OpenCloseState.html index 0feab5e..7bca389 100644 --- a/f3_rs/enum.OpenCloseState.html +++ b/f3_rs/enum.OpenCloseState.html @@ -4,23 +4,23 @@
pub enum OpenCloseState {
+    

Enum f3_rs::OpenCloseState

source · []
pub enum OpenCloseState {
     Closed,
     Open,
 }
Expand description

states of issue, milestone, etc with only “open” and “closed” states and “closed” states and “closed” states and “closed” states

Variants

Closed

A ‘closed’ issue will not see any activity in the future

Open

An ‘open’ issue will see activity in the future

-

Trait Implementations

Returns a copy of the value. Read more

+

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

-

Formats the value using the given formatter. Read more

-

Returns the “default value” for a type. Read more

-

Deserialize this value from the given Serde deserializer. Read more

-

This method tests for self and other values to be equal, and is used +

Formats the value using the given formatter. Read more

+

Returns the “default value” for a type. Read more

+

Deserialize this value from the given Serde deserializer. Read more

+

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

-

Serialize this value into the given Serde serializer. Read more

-

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

+

Serialize this value into the given Serde serializer. Read more

+

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

diff --git a/f3_rs/index.html b/f3_rs/index.html index a3044ed..9d7f337 100644 --- a/f3_rs/index.html +++ b/f3_rs/index.html @@ -4,11 +4,11 @@
-

Crate f3_rs

source · []
Expand description
Expand description

Welcome to F3 Documentation!

Please refer to the main documentation for a complete overview. This is an incomplete Rust port of the F3 library created by the ForgeFriends project.

Re-exports

-
pub use comment::Comment;
pub use identities::Identities;
pub use issue::Issue;
pub use label::Label;
pub use milestone::Milestone;
pub use project::Project;
pub use reaction::Reaction;
pub use repository::Repository;
pub use topic::Topic;
pub use user::User;

Modules

+
pub use comment::Comment;
pub use identities::Identities;
pub use issue::Issue;
pub use label::Label;
pub use milestone::Milestone;
pub use project::Project;
pub use pullrequest::PullRequest;
pub use reaction::Reaction;
pub use repository::Repository;
pub use topic::Topic;
pub use user::User;

Modules

Comments associated to an issue or a pull/merge request within the repository of a forge (Gitea, GitLab, etc.)

Pairs of identities mapping one forge to another.

@@ -16,6 +16,7 @@ This is an incomplete Rust port of the F3 library created by the ForgeFriends pr

Label associated to an issue or a comment

Milestone associated to a repository within a forge

A software project that resides on a forge (Gitea, GitLab, etc.).

+

Pull requests associated to a repository within a forge (Gitea, GitLab, etc.)

Reaction associated to an issue or a comment

VCS repository relative to a project.

A list of categories associated with a project.

diff --git a/f3_rs/issue/struct.Issue.html b/f3_rs/issue/struct.Issue.html index 701309c..5df9123 100644 --- a/f3_rs/issue/struct.Issue.html +++ b/f3_rs/issue/struct.Issue.html @@ -31,11 +31,11 @@ and vice versa

milestone: Option<String>

Name of the milestone

state: OpenCloseState

state of the issue

is_locked: bool

A locked issue can only be modified by privileged users

-
created: String

Creating time

+
created: String

Creation time

updated: String

Last update time

closed: Option<String>

The last time ‘state’ changed to ‘closed’

labels: Option<Vec<String>>

List of labels.

-
reactions: Option<Vec<Reaction>>

Multiline content of the comment

+
reactions: Option<Vec<Reaction>>

List of reactions

assignees: Option<Vec<String>>

List of assignees.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

diff --git a/f3_rs/pullrequest/index.html b/f3_rs/pullrequest/index.html new file mode 100644 index 0000000..ae82e0b --- /dev/null +++ b/f3_rs/pullrequest/index.html @@ -0,0 +1,13 @@ +f3_rs::pullrequest - Rust + +
Expand description

Pull requests associated to a repository within a forge (Gitea, GitLab, etc.)

+

Structs

+

Pull requests associated to a repository within a forge (Gitea, GitLab, etc.)

+

PullRequest reference to a commit +The location of a commit, including the URL of the repository where it can be found

+
+ \ No newline at end of file diff --git a/f3_rs/pullrequest/sidebar-items.js b/f3_rs/pullrequest/sidebar-items.js new file mode 100644 index 0000000..8991fb4 --- /dev/null +++ b/f3_rs/pullrequest/sidebar-items.js @@ -0,0 +1 @@ +initSidebarItems({"struct":[["PullRequest","Pull requests associated to a repository within a forge (Gitea, GitLab, etc.)"],["PullRequestRef","PullRequest reference to a commit The location of a commit, including the URL of the repository where it can be found"]]}); \ No newline at end of file diff --git a/f3_rs/pullrequest/struct.PullRequest.html b/f3_rs/pullrequest/struct.PullRequest.html new file mode 100644 index 0000000..1f3da03 --- /dev/null +++ b/f3_rs/pullrequest/struct.PullRequest.html @@ -0,0 +1,71 @@ +PullRequest in f3_rs::pullrequest - Rust + +
pub struct PullRequest {
Show 19 fields + pub index: usize, + pub poster_id: usize, + pub title: String, + pub content: String, + pub milestone: Option<String>, + pub state: OpenCloseState, + pub is_locked: bool, + pub created: String, + pub updated: String, + pub closed: Option<String>, + pub labels: Option<Vec<String>>, + pub reactions: Option<Vec<Reaction>>, + pub assignees: Option<Vec<String>>, + pub patch_url: String, + pub merged: bool, + pub merged_time: Option<String>, + pub merged_commit_sha: Option<String>, + pub head: Option<PullRequestRef>, + pub base: Option<PullRequestRef>, +
}
Expand description

Pull requests associated to a repository within a forge (Gitea, GitLab, etc.)

+

Fields

index: usize

Unique identifier, relative to the repository

+
poster_id: usize

Unique identifier of the user who authored the pull request.

+
title: String

Short description displayed as the title.

+
content: String

Long, multiline, description

+
milestone: Option<String>

Name of the milestone

+
state: OpenCloseState

state of the pull request

+
is_locked: bool

A locked pull request issue can only be modified by privileged users

+
created: String

Creation time

+
updated: String

Last update time

+
closed: Option<String>

The last time ‘state’ changed to ‘closed’

+
labels: Option<Vec<String>>

List of labels.

+
reactions: Option<Vec<Reaction>>

List of reactions

+
assignees: Option<Vec<String>>

List of assignees.

+
patch_url: String

URL from which the patch of the pull request can be retrieved.

+
merged: bool

True if the pull request was merged

+
merged_time: Option<String>

The time when the pull request was merged.

+
merged_commit_sha: Option<String>

The SHA of the merge commit

+
head: Option<PullRequestRef>

The changes proposed in the pull request.

+
base: Option<PullRequestRef>

The branch where the pull request changes in the head are to be merged.

+

Trait Implementations

Returns a copy of the value. Read more

+

Performs copy-assignment from source. Read more

+

Formats the value using the given formatter. Read more

+

Returns the “default value” for a type. Read more

+

Deserialize this value from the given Serde deserializer. Read more

+

This method tests for self and other values to be equal, and is used +by ==. Read more

+

This method tests for !=.

+

Serialize this value into the given Serde serializer. Read more

+

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

+

Immutably borrows from an owned value. Read more

+

Mutably borrows from an owned value. Read more

+

Returns the argument unchanged.

+

Calls U::from(self).

+

That is, this conversion is whatever the implementation of +From<T> for U chooses to do.

+

The resulting type after obtaining ownership.

+

Creates owned data from borrowed data, usually by cloning. Read more

+
🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

+

The type returned in the event of a conversion error.

+

Performs the conversion.

+

The type returned in the event of a conversion error.

+

Performs the conversion.

+
+ \ No newline at end of file diff --git a/f3_rs/pullrequest/struct.PullRequestRef.html b/f3_rs/pullrequest/struct.PullRequestRef.html new file mode 100644 index 0000000..0c0737f --- /dev/null +++ b/f3_rs/pullrequest/struct.PullRequestRef.html @@ -0,0 +1,47 @@ +PullRequestRef in f3_rs::pullrequest - Rust + +
pub struct PullRequestRef {
+    pub clone_url: String,
+    pub reference: Option<String>,
+    pub sha: String,
+    pub repo_name: String,
+    pub owner_name: String,
+}
Expand description

PullRequest reference to a commit +The location of a commit, including the URL of the repository where it can be found

+

Fields

clone_url: String

URL of the repository where the commit is located.

+
reference: Option<String>

Target branch in the repository.

+

NOTE: Actual property is called “ref” but it is a keyword in Rust so we are using +“reference”. However, “reference” will automatically be renamed to “ref” while serializing +and vice versa

+
sha: String

SHA of the commit

+
repo_name: String

Name of the project that contains the git repository.

+
owner_name: String

Name of the user or organization that contains the project.

+

Trait Implementations

Returns a copy of the value. Read more

+

Performs copy-assignment from source. Read more

+

Formats the value using the given formatter. Read more

+

Returns the “default value” for a type. Read more

+

Deserialize this value from the given Serde deserializer. Read more

+

This method tests for self and other values to be equal, and is used +by ==. Read more

+

This method tests for !=.

+

Serialize this value into the given Serde serializer. Read more

+

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

+

Immutably borrows from an owned value. Read more

+

Mutably borrows from an owned value. Read more

+

Returns the argument unchanged.

+

Calls U::from(self).

+

That is, this conversion is whatever the implementation of +From<T> for U chooses to do.

+

The resulting type after obtaining ownership.

+

Creates owned data from borrowed data, usually by cloning. Read more

+
🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

+

The type returned in the event of a conversion error.

+

Performs the conversion.

+

The type returned in the event of a conversion error.

+

Performs the conversion.

+
+ \ No newline at end of file diff --git a/f3_rs/sidebar-items.js b/f3_rs/sidebar-items.js index e4d1756..3f7ecd0 100644 --- a/f3_rs/sidebar-items.js +++ b/f3_rs/sidebar-items.js @@ -1 +1 @@ -initSidebarItems({"enum":[["OpenCloseState","states of issue, milestone, etc with only “open” and “closed” states and “closed” states and “closed” states and “closed” states"]],"mod":[["comment","Comments associated to an issue or a pull/merge request within the repository of a forge (Gitea, GitLab, etc.)"],["identities","Pairs of identities mapping one forge to another."],["issue","Issues associated to a repository within a forge (Gitea, GitLab, etc.)."],["label","Label associated to an issue or a comment"],["milestone","Milestone associated to a repository within a forge"],["project","A software project that resides on a forge (Gitea, GitLab, etc.)."],["reaction","Reaction associated to an issue or a comment"],["repository","VCS repository relative to a project."],["topic","A list of categories associated with a project."],["user","A forge user"]]}); \ No newline at end of file +initSidebarItems({"enum":[["OpenCloseState","states of issue, milestone, etc with only “open” and “closed” states and “closed” states and “closed” states and “closed” states"]],"mod":[["comment","Comments associated to an issue or a pull/merge request within the repository of a forge (Gitea, GitLab, etc.)"],["identities","Pairs of identities mapping one forge to another."],["issue","Issues associated to a repository within a forge (Gitea, GitLab, etc.)."],["label","Label associated to an issue or a comment"],["milestone","Milestone associated to a repository within a forge"],["project","A software project that resides on a forge (Gitea, GitLab, etc.)."],["pullrequest","Pull requests associated to a repository within a forge (Gitea, GitLab, etc.)"],["reaction","Reaction associated to an issue or a comment"],["repository","VCS repository relative to a project."],["topic","A list of categories associated with a project."],["user","A forge user"]]}); \ No newline at end of file diff --git a/implementors/core/clone/trait.Clone.js b/implementors/core/clone/trait.Clone.js index 88e0e56..728de9d 100644 --- a/implementors/core/clone/trait.Clone.js +++ b/implementors/core/clone/trait.Clone.js @@ -1,3 +1,3 @@ (function() {var implementors = {}; -implementors["f3_rs"] = [{"text":"impl Clone for Comment","synthetic":false,"types":["f3_rs::comment::Comment"]},{"text":"impl Clone for Identities","synthetic":false,"types":["f3_rs::identities::Identities"]},{"text":"impl Clone for Issue","synthetic":false,"types":["f3_rs::issue::Issue"]},{"text":"impl Clone for Label","synthetic":false,"types":["f3_rs::label::Label"]},{"text":"impl Clone for Milestone","synthetic":false,"types":["f3_rs::milestone::Milestone"]},{"text":"impl Clone for Project","synthetic":false,"types":["f3_rs::project::Project"]},{"text":"impl Clone for Reaction","synthetic":false,"types":["f3_rs::reaction::Reaction"]},{"text":"impl Clone for Repository","synthetic":false,"types":["f3_rs::repository::Repository"]},{"text":"impl Clone for Topic","synthetic":false,"types":["f3_rs::topic::Topic"]},{"text":"impl Clone for User","synthetic":false,"types":["f3_rs::user::User"]},{"text":"impl Clone for OpenCloseState","synthetic":false,"types":["f3_rs::OpenCloseState"]}]; +implementors["f3_rs"] = [{"text":"impl Clone for Comment","synthetic":false,"types":["f3_rs::comment::Comment"]},{"text":"impl Clone for Identities","synthetic":false,"types":["f3_rs::identities::Identities"]},{"text":"impl Clone for Issue","synthetic":false,"types":["f3_rs::issue::Issue"]},{"text":"impl Clone for Label","synthetic":false,"types":["f3_rs::label::Label"]},{"text":"impl Clone for Milestone","synthetic":false,"types":["f3_rs::milestone::Milestone"]},{"text":"impl Clone for Project","synthetic":false,"types":["f3_rs::project::Project"]},{"text":"impl Clone for PullRequest","synthetic":false,"types":["f3_rs::pullrequest::PullRequest"]},{"text":"impl Clone for PullRequestRef","synthetic":false,"types":["f3_rs::pullrequest::PullRequestRef"]},{"text":"impl Clone for Reaction","synthetic":false,"types":["f3_rs::reaction::Reaction"]},{"text":"impl Clone for Repository","synthetic":false,"types":["f3_rs::repository::Repository"]},{"text":"impl Clone for Topic","synthetic":false,"types":["f3_rs::topic::Topic"]},{"text":"impl Clone for User","synthetic":false,"types":["f3_rs::user::User"]},{"text":"impl Clone for OpenCloseState","synthetic":false,"types":["f3_rs::OpenCloseState"]}]; if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/core/cmp/trait.Eq.js b/implementors/core/cmp/trait.Eq.js index d63de02..1cea396 100644 --- a/implementors/core/cmp/trait.Eq.js +++ b/implementors/core/cmp/trait.Eq.js @@ -1,3 +1,3 @@ (function() {var implementors = {}; -implementors["f3_rs"] = [{"text":"impl Eq for Comment","synthetic":false,"types":["f3_rs::comment::Comment"]},{"text":"impl Eq for Identities","synthetic":false,"types":["f3_rs::identities::Identities"]},{"text":"impl Eq for Issue","synthetic":false,"types":["f3_rs::issue::Issue"]},{"text":"impl Eq for Label","synthetic":false,"types":["f3_rs::label::Label"]},{"text":"impl Eq for Milestone","synthetic":false,"types":["f3_rs::milestone::Milestone"]},{"text":"impl Eq for Project","synthetic":false,"types":["f3_rs::project::Project"]},{"text":"impl Eq for Reaction","synthetic":false,"types":["f3_rs::reaction::Reaction"]},{"text":"impl Eq for Repository","synthetic":false,"types":["f3_rs::repository::Repository"]},{"text":"impl Eq for Topic","synthetic":false,"types":["f3_rs::topic::Topic"]},{"text":"impl Eq for User","synthetic":false,"types":["f3_rs::user::User"]},{"text":"impl Eq for OpenCloseState","synthetic":false,"types":["f3_rs::OpenCloseState"]}]; +implementors["f3_rs"] = [{"text":"impl Eq for Comment","synthetic":false,"types":["f3_rs::comment::Comment"]},{"text":"impl Eq for Identities","synthetic":false,"types":["f3_rs::identities::Identities"]},{"text":"impl Eq for Issue","synthetic":false,"types":["f3_rs::issue::Issue"]},{"text":"impl Eq for Label","synthetic":false,"types":["f3_rs::label::Label"]},{"text":"impl Eq for Milestone","synthetic":false,"types":["f3_rs::milestone::Milestone"]},{"text":"impl Eq for Project","synthetic":false,"types":["f3_rs::project::Project"]},{"text":"impl Eq for PullRequest","synthetic":false,"types":["f3_rs::pullrequest::PullRequest"]},{"text":"impl Eq for PullRequestRef","synthetic":false,"types":["f3_rs::pullrequest::PullRequestRef"]},{"text":"impl Eq for Reaction","synthetic":false,"types":["f3_rs::reaction::Reaction"]},{"text":"impl Eq for Repository","synthetic":false,"types":["f3_rs::repository::Repository"]},{"text":"impl Eq for Topic","synthetic":false,"types":["f3_rs::topic::Topic"]},{"text":"impl Eq for User","synthetic":false,"types":["f3_rs::user::User"]},{"text":"impl Eq for OpenCloseState","synthetic":false,"types":["f3_rs::OpenCloseState"]}]; if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/core/cmp/trait.PartialEq.js b/implementors/core/cmp/trait.PartialEq.js index 7f29a1c..d750e92 100644 --- a/implementors/core/cmp/trait.PartialEq.js +++ b/implementors/core/cmp/trait.PartialEq.js @@ -1,3 +1,3 @@ (function() {var implementors = {}; -implementors["f3_rs"] = [{"text":"impl PartialEq<Comment> for Comment","synthetic":false,"types":["f3_rs::comment::Comment"]},{"text":"impl PartialEq<Identities> for Identities","synthetic":false,"types":["f3_rs::identities::Identities"]},{"text":"impl PartialEq<Issue> for Issue","synthetic":false,"types":["f3_rs::issue::Issue"]},{"text":"impl PartialEq<Label> for Label","synthetic":false,"types":["f3_rs::label::Label"]},{"text":"impl PartialEq<Milestone> for Milestone","synthetic":false,"types":["f3_rs::milestone::Milestone"]},{"text":"impl PartialEq<Project> for Project","synthetic":false,"types":["f3_rs::project::Project"]},{"text":"impl PartialEq<Reaction> for Reaction","synthetic":false,"types":["f3_rs::reaction::Reaction"]},{"text":"impl PartialEq<Repository> for Repository","synthetic":false,"types":["f3_rs::repository::Repository"]},{"text":"impl PartialEq<Topic> for Topic","synthetic":false,"types":["f3_rs::topic::Topic"]},{"text":"impl PartialEq<User> for User","synthetic":false,"types":["f3_rs::user::User"]},{"text":"impl PartialEq<OpenCloseState> for OpenCloseState","synthetic":false,"types":["f3_rs::OpenCloseState"]}]; +implementors["f3_rs"] = [{"text":"impl PartialEq<Comment> for Comment","synthetic":false,"types":["f3_rs::comment::Comment"]},{"text":"impl PartialEq<Identities> for Identities","synthetic":false,"types":["f3_rs::identities::Identities"]},{"text":"impl PartialEq<Issue> for Issue","synthetic":false,"types":["f3_rs::issue::Issue"]},{"text":"impl PartialEq<Label> for Label","synthetic":false,"types":["f3_rs::label::Label"]},{"text":"impl PartialEq<Milestone> for Milestone","synthetic":false,"types":["f3_rs::milestone::Milestone"]},{"text":"impl PartialEq<Project> for Project","synthetic":false,"types":["f3_rs::project::Project"]},{"text":"impl PartialEq<PullRequest> for PullRequest","synthetic":false,"types":["f3_rs::pullrequest::PullRequest"]},{"text":"impl PartialEq<PullRequestRef> for PullRequestRef","synthetic":false,"types":["f3_rs::pullrequest::PullRequestRef"]},{"text":"impl PartialEq<Reaction> for Reaction","synthetic":false,"types":["f3_rs::reaction::Reaction"]},{"text":"impl PartialEq<Repository> for Repository","synthetic":false,"types":["f3_rs::repository::Repository"]},{"text":"impl PartialEq<Topic> for Topic","synthetic":false,"types":["f3_rs::topic::Topic"]},{"text":"impl PartialEq<User> for User","synthetic":false,"types":["f3_rs::user::User"]},{"text":"impl PartialEq<OpenCloseState> for OpenCloseState","synthetic":false,"types":["f3_rs::OpenCloseState"]}]; if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/core/default/trait.Default.js b/implementors/core/default/trait.Default.js index 1324bbf..ad4c3ef 100644 --- a/implementors/core/default/trait.Default.js +++ b/implementors/core/default/trait.Default.js @@ -1,3 +1,3 @@ (function() {var implementors = {}; -implementors["f3_rs"] = [{"text":"impl Default for Comment","synthetic":false,"types":["f3_rs::comment::Comment"]},{"text":"impl Default for Identities","synthetic":false,"types":["f3_rs::identities::Identities"]},{"text":"impl Default for Issue","synthetic":false,"types":["f3_rs::issue::Issue"]},{"text":"impl Default for Label","synthetic":false,"types":["f3_rs::label::Label"]},{"text":"impl Default for Milestone","synthetic":false,"types":["f3_rs::milestone::Milestone"]},{"text":"impl Default for Project","synthetic":false,"types":["f3_rs::project::Project"]},{"text":"impl Default for Reaction","synthetic":false,"types":["f3_rs::reaction::Reaction"]},{"text":"impl Default for Repository","synthetic":false,"types":["f3_rs::repository::Repository"]},{"text":"impl Default for Topic","synthetic":false,"types":["f3_rs::topic::Topic"]},{"text":"impl Default for User","synthetic":false,"types":["f3_rs::user::User"]},{"text":"impl Default for OpenCloseState","synthetic":false,"types":["f3_rs::OpenCloseState"]}]; +implementors["f3_rs"] = [{"text":"impl Default for Comment","synthetic":false,"types":["f3_rs::comment::Comment"]},{"text":"impl Default for Identities","synthetic":false,"types":["f3_rs::identities::Identities"]},{"text":"impl Default for Issue","synthetic":false,"types":["f3_rs::issue::Issue"]},{"text":"impl Default for Label","synthetic":false,"types":["f3_rs::label::Label"]},{"text":"impl Default for Milestone","synthetic":false,"types":["f3_rs::milestone::Milestone"]},{"text":"impl Default for Project","synthetic":false,"types":["f3_rs::project::Project"]},{"text":"impl Default for PullRequest","synthetic":false,"types":["f3_rs::pullrequest::PullRequest"]},{"text":"impl Default for PullRequestRef","synthetic":false,"types":["f3_rs::pullrequest::PullRequestRef"]},{"text":"impl Default for Reaction","synthetic":false,"types":["f3_rs::reaction::Reaction"]},{"text":"impl Default for Repository","synthetic":false,"types":["f3_rs::repository::Repository"]},{"text":"impl Default for Topic","synthetic":false,"types":["f3_rs::topic::Topic"]},{"text":"impl Default for User","synthetic":false,"types":["f3_rs::user::User"]},{"text":"impl Default for OpenCloseState","synthetic":false,"types":["f3_rs::OpenCloseState"]}]; if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/core/fmt/trait.Debug.js b/implementors/core/fmt/trait.Debug.js index f413fd0..38b526c 100644 --- a/implementors/core/fmt/trait.Debug.js +++ b/implementors/core/fmt/trait.Debug.js @@ -1,3 +1,3 @@ (function() {var implementors = {}; -implementors["f3_rs"] = [{"text":"impl Debug for Comment","synthetic":false,"types":["f3_rs::comment::Comment"]},{"text":"impl Debug for Identities","synthetic":false,"types":["f3_rs::identities::Identities"]},{"text":"impl Debug for Issue","synthetic":false,"types":["f3_rs::issue::Issue"]},{"text":"impl Debug for Label","synthetic":false,"types":["f3_rs::label::Label"]},{"text":"impl Debug for Milestone","synthetic":false,"types":["f3_rs::milestone::Milestone"]},{"text":"impl Debug for Project","synthetic":false,"types":["f3_rs::project::Project"]},{"text":"impl Debug for Reaction","synthetic":false,"types":["f3_rs::reaction::Reaction"]},{"text":"impl Debug for Repository","synthetic":false,"types":["f3_rs::repository::Repository"]},{"text":"impl Debug for Topic","synthetic":false,"types":["f3_rs::topic::Topic"]},{"text":"impl Debug for User","synthetic":false,"types":["f3_rs::user::User"]},{"text":"impl Debug for OpenCloseState","synthetic":false,"types":["f3_rs::OpenCloseState"]}]; +implementors["f3_rs"] = [{"text":"impl Debug for Comment","synthetic":false,"types":["f3_rs::comment::Comment"]},{"text":"impl Debug for Identities","synthetic":false,"types":["f3_rs::identities::Identities"]},{"text":"impl Debug for Issue","synthetic":false,"types":["f3_rs::issue::Issue"]},{"text":"impl Debug for Label","synthetic":false,"types":["f3_rs::label::Label"]},{"text":"impl Debug for Milestone","synthetic":false,"types":["f3_rs::milestone::Milestone"]},{"text":"impl Debug for Project","synthetic":false,"types":["f3_rs::project::Project"]},{"text":"impl Debug for PullRequest","synthetic":false,"types":["f3_rs::pullrequest::PullRequest"]},{"text":"impl Debug for PullRequestRef","synthetic":false,"types":["f3_rs::pullrequest::PullRequestRef"]},{"text":"impl Debug for Reaction","synthetic":false,"types":["f3_rs::reaction::Reaction"]},{"text":"impl Debug for Repository","synthetic":false,"types":["f3_rs::repository::Repository"]},{"text":"impl Debug for Topic","synthetic":false,"types":["f3_rs::topic::Topic"]},{"text":"impl Debug for User","synthetic":false,"types":["f3_rs::user::User"]},{"text":"impl Debug for OpenCloseState","synthetic":false,"types":["f3_rs::OpenCloseState"]}]; if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/core/marker/trait.Freeze.js b/implementors/core/marker/trait.Freeze.js index 3c70065..acc1459 100644 --- a/implementors/core/marker/trait.Freeze.js +++ b/implementors/core/marker/trait.Freeze.js @@ -1,3 +1,3 @@ (function() {var implementors = {}; -implementors["f3_rs"] = [{"text":"impl Freeze for Comment","synthetic":true,"types":["f3_rs::comment::Comment"]},{"text":"impl Freeze for Identities","synthetic":true,"types":["f3_rs::identities::Identities"]},{"text":"impl Freeze for Issue","synthetic":true,"types":["f3_rs::issue::Issue"]},{"text":"impl Freeze for Label","synthetic":true,"types":["f3_rs::label::Label"]},{"text":"impl Freeze for Milestone","synthetic":true,"types":["f3_rs::milestone::Milestone"]},{"text":"impl Freeze for Project","synthetic":true,"types":["f3_rs::project::Project"]},{"text":"impl Freeze for Reaction","synthetic":true,"types":["f3_rs::reaction::Reaction"]},{"text":"impl Freeze for Repository","synthetic":true,"types":["f3_rs::repository::Repository"]},{"text":"impl Freeze for Topic","synthetic":true,"types":["f3_rs::topic::Topic"]},{"text":"impl Freeze for User","synthetic":true,"types":["f3_rs::user::User"]},{"text":"impl Freeze for OpenCloseState","synthetic":true,"types":["f3_rs::OpenCloseState"]}]; +implementors["f3_rs"] = [{"text":"impl Freeze for Comment","synthetic":true,"types":["f3_rs::comment::Comment"]},{"text":"impl Freeze for Identities","synthetic":true,"types":["f3_rs::identities::Identities"]},{"text":"impl Freeze for Issue","synthetic":true,"types":["f3_rs::issue::Issue"]},{"text":"impl Freeze for Label","synthetic":true,"types":["f3_rs::label::Label"]},{"text":"impl Freeze for Milestone","synthetic":true,"types":["f3_rs::milestone::Milestone"]},{"text":"impl Freeze for Project","synthetic":true,"types":["f3_rs::project::Project"]},{"text":"impl Freeze for PullRequest","synthetic":true,"types":["f3_rs::pullrequest::PullRequest"]},{"text":"impl Freeze for PullRequestRef","synthetic":true,"types":["f3_rs::pullrequest::PullRequestRef"]},{"text":"impl Freeze for Reaction","synthetic":true,"types":["f3_rs::reaction::Reaction"]},{"text":"impl Freeze for Repository","synthetic":true,"types":["f3_rs::repository::Repository"]},{"text":"impl Freeze for Topic","synthetic":true,"types":["f3_rs::topic::Topic"]},{"text":"impl Freeze for User","synthetic":true,"types":["f3_rs::user::User"]},{"text":"impl Freeze for OpenCloseState","synthetic":true,"types":["f3_rs::OpenCloseState"]}]; if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/core/marker/trait.Send.js b/implementors/core/marker/trait.Send.js index fd9b36f..acd0a5b 100644 --- a/implementors/core/marker/trait.Send.js +++ b/implementors/core/marker/trait.Send.js @@ -1,3 +1,3 @@ (function() {var implementors = {}; -implementors["f3_rs"] = [{"text":"impl Send for Comment","synthetic":true,"types":["f3_rs::comment::Comment"]},{"text":"impl Send for Identities","synthetic":true,"types":["f3_rs::identities::Identities"]},{"text":"impl Send for Issue","synthetic":true,"types":["f3_rs::issue::Issue"]},{"text":"impl Send for Label","synthetic":true,"types":["f3_rs::label::Label"]},{"text":"impl Send for Milestone","synthetic":true,"types":["f3_rs::milestone::Milestone"]},{"text":"impl Send for Project","synthetic":true,"types":["f3_rs::project::Project"]},{"text":"impl Send for Reaction","synthetic":true,"types":["f3_rs::reaction::Reaction"]},{"text":"impl Send for Repository","synthetic":true,"types":["f3_rs::repository::Repository"]},{"text":"impl Send for Topic","synthetic":true,"types":["f3_rs::topic::Topic"]},{"text":"impl Send for User","synthetic":true,"types":["f3_rs::user::User"]},{"text":"impl Send for OpenCloseState","synthetic":true,"types":["f3_rs::OpenCloseState"]}]; +implementors["f3_rs"] = [{"text":"impl Send for Comment","synthetic":true,"types":["f3_rs::comment::Comment"]},{"text":"impl Send for Identities","synthetic":true,"types":["f3_rs::identities::Identities"]},{"text":"impl Send for Issue","synthetic":true,"types":["f3_rs::issue::Issue"]},{"text":"impl Send for Label","synthetic":true,"types":["f3_rs::label::Label"]},{"text":"impl Send for Milestone","synthetic":true,"types":["f3_rs::milestone::Milestone"]},{"text":"impl Send for Project","synthetic":true,"types":["f3_rs::project::Project"]},{"text":"impl Send for PullRequest","synthetic":true,"types":["f3_rs::pullrequest::PullRequest"]},{"text":"impl Send for PullRequestRef","synthetic":true,"types":["f3_rs::pullrequest::PullRequestRef"]},{"text":"impl Send for Reaction","synthetic":true,"types":["f3_rs::reaction::Reaction"]},{"text":"impl Send for Repository","synthetic":true,"types":["f3_rs::repository::Repository"]},{"text":"impl Send for Topic","synthetic":true,"types":["f3_rs::topic::Topic"]},{"text":"impl Send for User","synthetic":true,"types":["f3_rs::user::User"]},{"text":"impl Send for OpenCloseState","synthetic":true,"types":["f3_rs::OpenCloseState"]}]; if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/core/marker/trait.StructuralEq.js b/implementors/core/marker/trait.StructuralEq.js index ece0b02..4cc2105 100644 --- a/implementors/core/marker/trait.StructuralEq.js +++ b/implementors/core/marker/trait.StructuralEq.js @@ -1,3 +1,3 @@ (function() {var implementors = {}; -implementors["f3_rs"] = [{"text":"impl StructuralEq for Comment","synthetic":false,"types":["f3_rs::comment::Comment"]},{"text":"impl StructuralEq for Identities","synthetic":false,"types":["f3_rs::identities::Identities"]},{"text":"impl StructuralEq for Issue","synthetic":false,"types":["f3_rs::issue::Issue"]},{"text":"impl StructuralEq for Label","synthetic":false,"types":["f3_rs::label::Label"]},{"text":"impl StructuralEq for Milestone","synthetic":false,"types":["f3_rs::milestone::Milestone"]},{"text":"impl StructuralEq for Project","synthetic":false,"types":["f3_rs::project::Project"]},{"text":"impl StructuralEq for Reaction","synthetic":false,"types":["f3_rs::reaction::Reaction"]},{"text":"impl StructuralEq for Repository","synthetic":false,"types":["f3_rs::repository::Repository"]},{"text":"impl StructuralEq for Topic","synthetic":false,"types":["f3_rs::topic::Topic"]},{"text":"impl StructuralEq for User","synthetic":false,"types":["f3_rs::user::User"]},{"text":"impl StructuralEq for OpenCloseState","synthetic":false,"types":["f3_rs::OpenCloseState"]}]; +implementors["f3_rs"] = [{"text":"impl StructuralEq for Comment","synthetic":false,"types":["f3_rs::comment::Comment"]},{"text":"impl StructuralEq for Identities","synthetic":false,"types":["f3_rs::identities::Identities"]},{"text":"impl StructuralEq for Issue","synthetic":false,"types":["f3_rs::issue::Issue"]},{"text":"impl StructuralEq for Label","synthetic":false,"types":["f3_rs::label::Label"]},{"text":"impl StructuralEq for Milestone","synthetic":false,"types":["f3_rs::milestone::Milestone"]},{"text":"impl StructuralEq for Project","synthetic":false,"types":["f3_rs::project::Project"]},{"text":"impl StructuralEq for PullRequest","synthetic":false,"types":["f3_rs::pullrequest::PullRequest"]},{"text":"impl StructuralEq for PullRequestRef","synthetic":false,"types":["f3_rs::pullrequest::PullRequestRef"]},{"text":"impl StructuralEq for Reaction","synthetic":false,"types":["f3_rs::reaction::Reaction"]},{"text":"impl StructuralEq for Repository","synthetic":false,"types":["f3_rs::repository::Repository"]},{"text":"impl StructuralEq for Topic","synthetic":false,"types":["f3_rs::topic::Topic"]},{"text":"impl StructuralEq for User","synthetic":false,"types":["f3_rs::user::User"]},{"text":"impl StructuralEq for OpenCloseState","synthetic":false,"types":["f3_rs::OpenCloseState"]}]; if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/core/marker/trait.StructuralPartialEq.js b/implementors/core/marker/trait.StructuralPartialEq.js index 887a991..d7230a1 100644 --- a/implementors/core/marker/trait.StructuralPartialEq.js +++ b/implementors/core/marker/trait.StructuralPartialEq.js @@ -1,3 +1,3 @@ (function() {var implementors = {}; -implementors["f3_rs"] = [{"text":"impl StructuralPartialEq for Comment","synthetic":false,"types":["f3_rs::comment::Comment"]},{"text":"impl StructuralPartialEq for Identities","synthetic":false,"types":["f3_rs::identities::Identities"]},{"text":"impl StructuralPartialEq for Issue","synthetic":false,"types":["f3_rs::issue::Issue"]},{"text":"impl StructuralPartialEq for Label","synthetic":false,"types":["f3_rs::label::Label"]},{"text":"impl StructuralPartialEq for Milestone","synthetic":false,"types":["f3_rs::milestone::Milestone"]},{"text":"impl StructuralPartialEq for Project","synthetic":false,"types":["f3_rs::project::Project"]},{"text":"impl StructuralPartialEq for Reaction","synthetic":false,"types":["f3_rs::reaction::Reaction"]},{"text":"impl StructuralPartialEq for Repository","synthetic":false,"types":["f3_rs::repository::Repository"]},{"text":"impl StructuralPartialEq for Topic","synthetic":false,"types":["f3_rs::topic::Topic"]},{"text":"impl StructuralPartialEq for User","synthetic":false,"types":["f3_rs::user::User"]},{"text":"impl StructuralPartialEq for OpenCloseState","synthetic":false,"types":["f3_rs::OpenCloseState"]}]; +implementors["f3_rs"] = [{"text":"impl StructuralPartialEq for Comment","synthetic":false,"types":["f3_rs::comment::Comment"]},{"text":"impl StructuralPartialEq for Identities","synthetic":false,"types":["f3_rs::identities::Identities"]},{"text":"impl StructuralPartialEq for Issue","synthetic":false,"types":["f3_rs::issue::Issue"]},{"text":"impl StructuralPartialEq for Label","synthetic":false,"types":["f3_rs::label::Label"]},{"text":"impl StructuralPartialEq for Milestone","synthetic":false,"types":["f3_rs::milestone::Milestone"]},{"text":"impl StructuralPartialEq for Project","synthetic":false,"types":["f3_rs::project::Project"]},{"text":"impl StructuralPartialEq for PullRequest","synthetic":false,"types":["f3_rs::pullrequest::PullRequest"]},{"text":"impl StructuralPartialEq for PullRequestRef","synthetic":false,"types":["f3_rs::pullrequest::PullRequestRef"]},{"text":"impl StructuralPartialEq for Reaction","synthetic":false,"types":["f3_rs::reaction::Reaction"]},{"text":"impl StructuralPartialEq for Repository","synthetic":false,"types":["f3_rs::repository::Repository"]},{"text":"impl StructuralPartialEq for Topic","synthetic":false,"types":["f3_rs::topic::Topic"]},{"text":"impl StructuralPartialEq for User","synthetic":false,"types":["f3_rs::user::User"]},{"text":"impl StructuralPartialEq for OpenCloseState","synthetic":false,"types":["f3_rs::OpenCloseState"]}]; if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/core/marker/trait.Sync.js b/implementors/core/marker/trait.Sync.js index cbe232a..f0fe28f 100644 --- a/implementors/core/marker/trait.Sync.js +++ b/implementors/core/marker/trait.Sync.js @@ -1,3 +1,3 @@ (function() {var implementors = {}; -implementors["f3_rs"] = [{"text":"impl Sync for Comment","synthetic":true,"types":["f3_rs::comment::Comment"]},{"text":"impl Sync for Identities","synthetic":true,"types":["f3_rs::identities::Identities"]},{"text":"impl Sync for Issue","synthetic":true,"types":["f3_rs::issue::Issue"]},{"text":"impl Sync for Label","synthetic":true,"types":["f3_rs::label::Label"]},{"text":"impl Sync for Milestone","synthetic":true,"types":["f3_rs::milestone::Milestone"]},{"text":"impl Sync for Project","synthetic":true,"types":["f3_rs::project::Project"]},{"text":"impl Sync for Reaction","synthetic":true,"types":["f3_rs::reaction::Reaction"]},{"text":"impl Sync for Repository","synthetic":true,"types":["f3_rs::repository::Repository"]},{"text":"impl Sync for Topic","synthetic":true,"types":["f3_rs::topic::Topic"]},{"text":"impl Sync for User","synthetic":true,"types":["f3_rs::user::User"]},{"text":"impl Sync for OpenCloseState","synthetic":true,"types":["f3_rs::OpenCloseState"]}]; +implementors["f3_rs"] = [{"text":"impl Sync for Comment","synthetic":true,"types":["f3_rs::comment::Comment"]},{"text":"impl Sync for Identities","synthetic":true,"types":["f3_rs::identities::Identities"]},{"text":"impl Sync for Issue","synthetic":true,"types":["f3_rs::issue::Issue"]},{"text":"impl Sync for Label","synthetic":true,"types":["f3_rs::label::Label"]},{"text":"impl Sync for Milestone","synthetic":true,"types":["f3_rs::milestone::Milestone"]},{"text":"impl Sync for Project","synthetic":true,"types":["f3_rs::project::Project"]},{"text":"impl Sync for PullRequest","synthetic":true,"types":["f3_rs::pullrequest::PullRequest"]},{"text":"impl Sync for PullRequestRef","synthetic":true,"types":["f3_rs::pullrequest::PullRequestRef"]},{"text":"impl Sync for Reaction","synthetic":true,"types":["f3_rs::reaction::Reaction"]},{"text":"impl Sync for Repository","synthetic":true,"types":["f3_rs::repository::Repository"]},{"text":"impl Sync for Topic","synthetic":true,"types":["f3_rs::topic::Topic"]},{"text":"impl Sync for User","synthetic":true,"types":["f3_rs::user::User"]},{"text":"impl Sync for OpenCloseState","synthetic":true,"types":["f3_rs::OpenCloseState"]}]; if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/core/marker/trait.Unpin.js b/implementors/core/marker/trait.Unpin.js index 235c7e5..74b7815 100644 --- a/implementors/core/marker/trait.Unpin.js +++ b/implementors/core/marker/trait.Unpin.js @@ -1,3 +1,3 @@ (function() {var implementors = {}; -implementors["f3_rs"] = [{"text":"impl Unpin for Comment","synthetic":true,"types":["f3_rs::comment::Comment"]},{"text":"impl Unpin for Identities","synthetic":true,"types":["f3_rs::identities::Identities"]},{"text":"impl Unpin for Issue","synthetic":true,"types":["f3_rs::issue::Issue"]},{"text":"impl Unpin for Label","synthetic":true,"types":["f3_rs::label::Label"]},{"text":"impl Unpin for Milestone","synthetic":true,"types":["f3_rs::milestone::Milestone"]},{"text":"impl Unpin for Project","synthetic":true,"types":["f3_rs::project::Project"]},{"text":"impl Unpin for Reaction","synthetic":true,"types":["f3_rs::reaction::Reaction"]},{"text":"impl Unpin for Repository","synthetic":true,"types":["f3_rs::repository::Repository"]},{"text":"impl Unpin for Topic","synthetic":true,"types":["f3_rs::topic::Topic"]},{"text":"impl Unpin for User","synthetic":true,"types":["f3_rs::user::User"]},{"text":"impl Unpin for OpenCloseState","synthetic":true,"types":["f3_rs::OpenCloseState"]}]; +implementors["f3_rs"] = [{"text":"impl Unpin for Comment","synthetic":true,"types":["f3_rs::comment::Comment"]},{"text":"impl Unpin for Identities","synthetic":true,"types":["f3_rs::identities::Identities"]},{"text":"impl Unpin for Issue","synthetic":true,"types":["f3_rs::issue::Issue"]},{"text":"impl Unpin for Label","synthetic":true,"types":["f3_rs::label::Label"]},{"text":"impl Unpin for Milestone","synthetic":true,"types":["f3_rs::milestone::Milestone"]},{"text":"impl Unpin for Project","synthetic":true,"types":["f3_rs::project::Project"]},{"text":"impl Unpin for PullRequest","synthetic":true,"types":["f3_rs::pullrequest::PullRequest"]},{"text":"impl Unpin for PullRequestRef","synthetic":true,"types":["f3_rs::pullrequest::PullRequestRef"]},{"text":"impl Unpin for Reaction","synthetic":true,"types":["f3_rs::reaction::Reaction"]},{"text":"impl Unpin for Repository","synthetic":true,"types":["f3_rs::repository::Repository"]},{"text":"impl Unpin for Topic","synthetic":true,"types":["f3_rs::topic::Topic"]},{"text":"impl Unpin for User","synthetic":true,"types":["f3_rs::user::User"]},{"text":"impl Unpin for OpenCloseState","synthetic":true,"types":["f3_rs::OpenCloseState"]}]; if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/core/panic/unwind_safe/trait.RefUnwindSafe.js b/implementors/core/panic/unwind_safe/trait.RefUnwindSafe.js index 26667c2..a08af2c 100644 --- a/implementors/core/panic/unwind_safe/trait.RefUnwindSafe.js +++ b/implementors/core/panic/unwind_safe/trait.RefUnwindSafe.js @@ -1,3 +1,3 @@ (function() {var implementors = {}; -implementors["f3_rs"] = [{"text":"impl RefUnwindSafe for Comment","synthetic":true,"types":["f3_rs::comment::Comment"]},{"text":"impl RefUnwindSafe for Identities","synthetic":true,"types":["f3_rs::identities::Identities"]},{"text":"impl RefUnwindSafe for Issue","synthetic":true,"types":["f3_rs::issue::Issue"]},{"text":"impl RefUnwindSafe for Label","synthetic":true,"types":["f3_rs::label::Label"]},{"text":"impl RefUnwindSafe for Milestone","synthetic":true,"types":["f3_rs::milestone::Milestone"]},{"text":"impl RefUnwindSafe for Project","synthetic":true,"types":["f3_rs::project::Project"]},{"text":"impl RefUnwindSafe for Reaction","synthetic":true,"types":["f3_rs::reaction::Reaction"]},{"text":"impl RefUnwindSafe for Repository","synthetic":true,"types":["f3_rs::repository::Repository"]},{"text":"impl RefUnwindSafe for Topic","synthetic":true,"types":["f3_rs::topic::Topic"]},{"text":"impl RefUnwindSafe for User","synthetic":true,"types":["f3_rs::user::User"]},{"text":"impl RefUnwindSafe for OpenCloseState","synthetic":true,"types":["f3_rs::OpenCloseState"]}]; +implementors["f3_rs"] = [{"text":"impl RefUnwindSafe for Comment","synthetic":true,"types":["f3_rs::comment::Comment"]},{"text":"impl RefUnwindSafe for Identities","synthetic":true,"types":["f3_rs::identities::Identities"]},{"text":"impl RefUnwindSafe for Issue","synthetic":true,"types":["f3_rs::issue::Issue"]},{"text":"impl RefUnwindSafe for Label","synthetic":true,"types":["f3_rs::label::Label"]},{"text":"impl RefUnwindSafe for Milestone","synthetic":true,"types":["f3_rs::milestone::Milestone"]},{"text":"impl RefUnwindSafe for Project","synthetic":true,"types":["f3_rs::project::Project"]},{"text":"impl RefUnwindSafe for PullRequest","synthetic":true,"types":["f3_rs::pullrequest::PullRequest"]},{"text":"impl RefUnwindSafe for PullRequestRef","synthetic":true,"types":["f3_rs::pullrequest::PullRequestRef"]},{"text":"impl RefUnwindSafe for Reaction","synthetic":true,"types":["f3_rs::reaction::Reaction"]},{"text":"impl RefUnwindSafe for Repository","synthetic":true,"types":["f3_rs::repository::Repository"]},{"text":"impl RefUnwindSafe for Topic","synthetic":true,"types":["f3_rs::topic::Topic"]},{"text":"impl RefUnwindSafe for User","synthetic":true,"types":["f3_rs::user::User"]},{"text":"impl RefUnwindSafe for OpenCloseState","synthetic":true,"types":["f3_rs::OpenCloseState"]}]; if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/core/panic/unwind_safe/trait.UnwindSafe.js b/implementors/core/panic/unwind_safe/trait.UnwindSafe.js index 98883f1..e33ed3c 100644 --- a/implementors/core/panic/unwind_safe/trait.UnwindSafe.js +++ b/implementors/core/panic/unwind_safe/trait.UnwindSafe.js @@ -1,3 +1,3 @@ (function() {var implementors = {}; -implementors["f3_rs"] = [{"text":"impl UnwindSafe for Comment","synthetic":true,"types":["f3_rs::comment::Comment"]},{"text":"impl UnwindSafe for Identities","synthetic":true,"types":["f3_rs::identities::Identities"]},{"text":"impl UnwindSafe for Issue","synthetic":true,"types":["f3_rs::issue::Issue"]},{"text":"impl UnwindSafe for Label","synthetic":true,"types":["f3_rs::label::Label"]},{"text":"impl UnwindSafe for Milestone","synthetic":true,"types":["f3_rs::milestone::Milestone"]},{"text":"impl UnwindSafe for Project","synthetic":true,"types":["f3_rs::project::Project"]},{"text":"impl UnwindSafe for Reaction","synthetic":true,"types":["f3_rs::reaction::Reaction"]},{"text":"impl UnwindSafe for Repository","synthetic":true,"types":["f3_rs::repository::Repository"]},{"text":"impl UnwindSafe for Topic","synthetic":true,"types":["f3_rs::topic::Topic"]},{"text":"impl UnwindSafe for User","synthetic":true,"types":["f3_rs::user::User"]},{"text":"impl UnwindSafe for OpenCloseState","synthetic":true,"types":["f3_rs::OpenCloseState"]}]; +implementors["f3_rs"] = [{"text":"impl UnwindSafe for Comment","synthetic":true,"types":["f3_rs::comment::Comment"]},{"text":"impl UnwindSafe for Identities","synthetic":true,"types":["f3_rs::identities::Identities"]},{"text":"impl UnwindSafe for Issue","synthetic":true,"types":["f3_rs::issue::Issue"]},{"text":"impl UnwindSafe for Label","synthetic":true,"types":["f3_rs::label::Label"]},{"text":"impl UnwindSafe for Milestone","synthetic":true,"types":["f3_rs::milestone::Milestone"]},{"text":"impl UnwindSafe for Project","synthetic":true,"types":["f3_rs::project::Project"]},{"text":"impl UnwindSafe for PullRequest","synthetic":true,"types":["f3_rs::pullrequest::PullRequest"]},{"text":"impl UnwindSafe for PullRequestRef","synthetic":true,"types":["f3_rs::pullrequest::PullRequestRef"]},{"text":"impl UnwindSafe for Reaction","synthetic":true,"types":["f3_rs::reaction::Reaction"]},{"text":"impl UnwindSafe for Repository","synthetic":true,"types":["f3_rs::repository::Repository"]},{"text":"impl UnwindSafe for Topic","synthetic":true,"types":["f3_rs::topic::Topic"]},{"text":"impl UnwindSafe for User","synthetic":true,"types":["f3_rs::user::User"]},{"text":"impl UnwindSafe for OpenCloseState","synthetic":true,"types":["f3_rs::OpenCloseState"]}]; if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/serde/de/trait.Deserialize.js b/implementors/serde/de/trait.Deserialize.js index 45de123..9c273db 100644 --- a/implementors/serde/de/trait.Deserialize.js +++ b/implementors/serde/de/trait.Deserialize.js @@ -1,3 +1,3 @@ (function() {var implementors = {}; -implementors["f3_rs"] = [{"text":"impl<'de> Deserialize<'de> for Comment","synthetic":false,"types":["f3_rs::comment::Comment"]},{"text":"impl<'de> Deserialize<'de> for Identities","synthetic":false,"types":["f3_rs::identities::Identities"]},{"text":"impl<'de> Deserialize<'de> for Issue","synthetic":false,"types":["f3_rs::issue::Issue"]},{"text":"impl<'de> Deserialize<'de> for Label","synthetic":false,"types":["f3_rs::label::Label"]},{"text":"impl<'de> Deserialize<'de> for Milestone","synthetic":false,"types":["f3_rs::milestone::Milestone"]},{"text":"impl<'de> Deserialize<'de> for Project","synthetic":false,"types":["f3_rs::project::Project"]},{"text":"impl<'de> Deserialize<'de> for Reaction","synthetic":false,"types":["f3_rs::reaction::Reaction"]},{"text":"impl<'de> Deserialize<'de> for Repository","synthetic":false,"types":["f3_rs::repository::Repository"]},{"text":"impl<'de> Deserialize<'de> for Topic","synthetic":false,"types":["f3_rs::topic::Topic"]},{"text":"impl<'de> Deserialize<'de> for User","synthetic":false,"types":["f3_rs::user::User"]},{"text":"impl<'de> Deserialize<'de> for OpenCloseState","synthetic":false,"types":["f3_rs::OpenCloseState"]}]; +implementors["f3_rs"] = [{"text":"impl<'de> Deserialize<'de> for Comment","synthetic":false,"types":["f3_rs::comment::Comment"]},{"text":"impl<'de> Deserialize<'de> for Identities","synthetic":false,"types":["f3_rs::identities::Identities"]},{"text":"impl<'de> Deserialize<'de> for Issue","synthetic":false,"types":["f3_rs::issue::Issue"]},{"text":"impl<'de> Deserialize<'de> for Label","synthetic":false,"types":["f3_rs::label::Label"]},{"text":"impl<'de> Deserialize<'de> for Milestone","synthetic":false,"types":["f3_rs::milestone::Milestone"]},{"text":"impl<'de> Deserialize<'de> for Project","synthetic":false,"types":["f3_rs::project::Project"]},{"text":"impl<'de> Deserialize<'de> for PullRequest","synthetic":false,"types":["f3_rs::pullrequest::PullRequest"]},{"text":"impl<'de> Deserialize<'de> for PullRequestRef","synthetic":false,"types":["f3_rs::pullrequest::PullRequestRef"]},{"text":"impl<'de> Deserialize<'de> for Reaction","synthetic":false,"types":["f3_rs::reaction::Reaction"]},{"text":"impl<'de> Deserialize<'de> for Repository","synthetic":false,"types":["f3_rs::repository::Repository"]},{"text":"impl<'de> Deserialize<'de> for Topic","synthetic":false,"types":["f3_rs::topic::Topic"]},{"text":"impl<'de> Deserialize<'de> for User","synthetic":false,"types":["f3_rs::user::User"]},{"text":"impl<'de> Deserialize<'de> for OpenCloseState","synthetic":false,"types":["f3_rs::OpenCloseState"]}]; if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/serde/ser/trait.Serialize.js b/implementors/serde/ser/trait.Serialize.js index accc313..9d33ebe 100644 --- a/implementors/serde/ser/trait.Serialize.js +++ b/implementors/serde/ser/trait.Serialize.js @@ -1,3 +1,3 @@ (function() {var implementors = {}; -implementors["f3_rs"] = [{"text":"impl Serialize for Comment","synthetic":false,"types":["f3_rs::comment::Comment"]},{"text":"impl Serialize for Identities","synthetic":false,"types":["f3_rs::identities::Identities"]},{"text":"impl Serialize for Issue","synthetic":false,"types":["f3_rs::issue::Issue"]},{"text":"impl Serialize for Label","synthetic":false,"types":["f3_rs::label::Label"]},{"text":"impl Serialize for Milestone","synthetic":false,"types":["f3_rs::milestone::Milestone"]},{"text":"impl Serialize for Project","synthetic":false,"types":["f3_rs::project::Project"]},{"text":"impl Serialize for Reaction","synthetic":false,"types":["f3_rs::reaction::Reaction"]},{"text":"impl Serialize for Repository","synthetic":false,"types":["f3_rs::repository::Repository"]},{"text":"impl Serialize for Topic","synthetic":false,"types":["f3_rs::topic::Topic"]},{"text":"impl Serialize for User","synthetic":false,"types":["f3_rs::user::User"]},{"text":"impl Serialize for OpenCloseState","synthetic":false,"types":["f3_rs::OpenCloseState"]}]; +implementors["f3_rs"] = [{"text":"impl Serialize for Comment","synthetic":false,"types":["f3_rs::comment::Comment"]},{"text":"impl Serialize for Identities","synthetic":false,"types":["f3_rs::identities::Identities"]},{"text":"impl Serialize for Issue","synthetic":false,"types":["f3_rs::issue::Issue"]},{"text":"impl Serialize for Label","synthetic":false,"types":["f3_rs::label::Label"]},{"text":"impl Serialize for Milestone","synthetic":false,"types":["f3_rs::milestone::Milestone"]},{"text":"impl Serialize for Project","synthetic":false,"types":["f3_rs::project::Project"]},{"text":"impl Serialize for PullRequest","synthetic":false,"types":["f3_rs::pullrequest::PullRequest"]},{"text":"impl Serialize for PullRequestRef","synthetic":false,"types":["f3_rs::pullrequest::PullRequestRef"]},{"text":"impl Serialize for Reaction","synthetic":false,"types":["f3_rs::reaction::Reaction"]},{"text":"impl Serialize for Repository","synthetic":false,"types":["f3_rs::repository::Repository"]},{"text":"impl Serialize for Topic","synthetic":false,"types":["f3_rs::topic::Topic"]},{"text":"impl Serialize for User","synthetic":false,"types":["f3_rs::user::User"]},{"text":"impl Serialize for OpenCloseState","synthetic":false,"types":["f3_rs::OpenCloseState"]}]; if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/search-index.js b/search-index.js index ef50e5a..dc67443 100644 --- a/search-index.js +++ b/search-index.js @@ -1,4 +1,4 @@ var searchIndex = JSON.parse('{\ -"f3_rs":{"doc":"Welcome to F3 Documentation!","t":[13,13,4,11,11,11,11,0,11,11,11,11,11,0,11,0,0,0,0,0,0,11,11,0,11,11,11,0,3,11,11,11,11,12,12,11,11,11,11,11,12,11,12,11,12,12,11,11,11,11,11,12,3,11,11,11,11,11,11,11,11,11,11,11,12,11,11,11,11,11,3,12,11,11,11,11,12,12,12,11,11,11,11,11,12,11,12,12,12,11,12,12,12,11,12,12,11,11,11,11,12,3,11,11,11,11,12,11,12,11,11,11,11,12,11,12,11,11,11,11,11,11,3,11,11,11,11,12,12,12,11,12,11,11,11,11,12,11,11,11,12,12,11,11,11,11,12,3,11,11,11,11,12,11,12,12,11,11,11,11,12,11,12,12,12,11,12,12,12,11,11,11,11,11,3,11,11,11,11,12,11,11,11,11,11,12,11,11,11,11,11,11,11,12,3,11,11,11,11,11,11,11,11,11,11,12,11,11,11,11,11,11,3,11,11,11,11,11,11,11,11,11,12,11,12,11,11,11,11,11,11,3,11,11,11,11,11,11,12,11,11,11,12,11,12,11,12,11,11,11,11,11,12],"n":["Closed","Open","OpenCloseState","borrow","borrow_mut","clone","clone_into","comment","default","deserialize","eq","fmt","from","identities","into","issue","label","milestone","project","reaction","repository","serialize","to_owned","topic","try_from","try_into","type_id","user","Comment","borrow","borrow_mut","clone","clone_into","content","created","default","deserialize","eq","fmt","from","index","into","issue_index","ne","poster_id","reactions","serialize","to_owned","try_from","try_into","type_id","updated","Identities","borrow","borrow_mut","clone","clone_into","default","deserialize","eq","fmt","from","into","ne","pairs","serialize","to_owned","try_from","try_into","type_id","Issue","assignees","borrow","borrow_mut","clone","clone_into","closed","content","created","default","deserialize","eq","fmt","from","index","into","is_locked","labels","milestone","ne","poster_id","reactions","reference","serialize","state","title","to_owned","try_from","try_into","type_id","updated","Label","borrow","borrow_mut","clone","clone_into","color","default","description","deserialize","eq","fmt","from","index","into","name","ne","serialize","to_owned","try_from","try_into","type_id","Milestone","borrow","borrow_mut","clone","clone_into","closed","created","deadline","default","description","deserialize","eq","fmt","from","index","into","ne","serialize","state","title","to_owned","try_from","try_into","type_id","updated","Project","borrow","borrow_mut","clone","clone_into","clone_url","default","default_branch","description","deserialize","eq","fmt","from","index","into","is_mirror","is_private","name","ne","original_url","owner","repositories","serialize","to_owned","try_from","try_into","type_id","Reaction","borrow","borrow_mut","clone","clone_into","content","default","deserialize","eq","fmt","from","index","into","ne","serialize","to_owned","try_from","try_into","type_id","user_id","Repository","borrow","borrow_mut","clone","clone_into","default","deserialize","eq","fmt","from","into","name","ne","serialize","to_owned","try_from","try_into","type_id","Topic","borrow","borrow_mut","clone","clone_into","default","deserialize","eq","fmt","from","index","into","name","ne","serialize","to_owned","try_from","try_into","type_id","User","borrow","borrow_mut","clone","clone_into","default","deserialize","email","eq","fmt","from","index","into","name","ne","password","serialize","to_owned","try_from","try_into","type_id","username"],"q":["f3_rs","","","","","","","","","","","","","","","","","","","","","","","","","","","","f3_rs::comment","","","","","","","","","","","","","","","","","","","","","","","","f3_rs::identities","","","","","","","","","","","","","","","","","","f3_rs::issue","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","f3_rs::label","","","","","","","","","","","","","","","","","","","","","f3_rs::milestone","","","","","","","","","","","","","","","","","","","","","","","","","f3_rs::project","","","","","","","","","","","","","","","","","","","","","","","","","","","f3_rs::reaction","","","","","","","","","","","","","","","","","","","","f3_rs::repository","","","","","","","","","","","","","","","","","","f3_rs::topic","","","","","","","","","","","","","","","","","","","f3_rs::user","","","","","","","","","","","","","","","","","","","","",""],"d":["A ‘closed’ issue will not see any activity in the …","An ‘open’ issue will see activity in the future","states of issue, milestone, etc with only “open” and …","","","","","Comments associated to an issue or a pull/merge request …","","","","","Returns the argument unchanged.","Pairs of identities mapping one forge to another.","Calls U::from(self).","Issues associated to a repository within a forge (Gitea, …","Label associated to an issue or a comment","Milestone associated to a repository within a forge","A software project that resides on a forge (Gitea, GitLab, …","Reaction associated to an issue or a comment","VCS repository relative to a project.","","","A list of categories associated with a project.","","","","A forge user","Comments associated to an issue or a pull/merge request …","","","","","Multiline content of the comment","Creating time","","","","","Returns the argument unchanged.","Unique identifier of the comment","Calls U::from(self).","Unique identifier of the issue or pull/merge request …","","Unique identifier of the user who authored the comment","Multiline content of the comment","","","","","","Last update time","Pairs of identities mapping one forge to another. The …","","","","","","","","","Returns the argument unchanged.","Calls U::from(self).","","","","","","","","Issues associated to a repository within a forge (Gitea, …","List of assignees.","","","","","The last time ‘state’ changed to ‘closed’","Long, multiline, description","Creating time","","","","","Returns the argument unchanged.","Unique identifier, relative to the repository","Calls U::from(self).","A locked issue can only be modified by privileged users","List of labels.","Name of the milestone","","Unique identifier of the user who authored the issue.","Multiline content of the comment","Target branch in the repository.","","state of the issue","Short description displayed as the title.","","","","","Last update time","Label associated to an issue or a comment","","","","","Color code of the label","","Long, multi-line description","","","","Returns the argument unchanged.","Unique identifier of the label","Calls U::from(self).","Name of the label, unique within the repository","","","","","","","Milestone associated to a repository within a forge","","","","","The last time ‘state’ changed to ‘closed’","Creating time","Deadline after which the milestone is overdue","","Long, multiline, description","","","","Returns the argument unchanged.","Unique identifier","Calls U::from(self).","","","A ‘closed’ milestone will not see any activity in the …","Short description","","","","","Last update time","A software project that resides on a forge (Gitea, GitLab, …","","","","","URL to clone the git repository of the project.","","Name of the default branch in the git repository","Long, multiline, description of the project.","","","","Returns the argument unchanged.","Unique identifier of the project","Calls U::from(self).","True if it is a mirror of a project residing on another …","True if the visibility of the project is not public.","Name of the project, relative to the owner","","URL of the homepage of the project","Owner of the project, either a forge user or an …","","","","","","","Reaction associated to an issue or a comment","","","","","Representation of the reaction","","","","","Returns the argument unchanged.","Unique identifier of the reaction","Calls U::from(self).","","","","","","","Unique identifier of the user who authored the reaction","VCS repository relative to a project.","","","","","","","","","Returns the argument unchanged.","Calls U::from(self).","Suffix to add to the clone URL of the project to access …","","","","","","","A list of categories associated with a project.","","","","","","","","","Returns the argument unchanged.","Unique identifier of the topic","Calls U::from(self).","Name of the category the project belongs to","","","","","","","A forge user","","","","","","","Mail of the user","","","Returns the argument unchanged.","Unique identifier of the user","Calls U::from(self).","User readable name of the user","","Password of the user","","","","","","Unique name readable name of the user"],"i":[1,1,0,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,0,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,0,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11],"f":[null,null,null,[[["",0]],["",0]],[[["",0]],["",0]],[[["",0]],["openclosestate",4]],[[["",0],["",0]]],null,[[]],[[],["result",4]],[[["",0],["openclosestate",4]],["bool",0]],[[["",0],["formatter",3]],["result",6]],[[]],null,[[]],null,null,null,null,null,null,[[["",0]],["result",4]],[[["",0]]],null,[[],["result",4]],[[],["result",4]],[[["",0]],["typeid",3]],null,null,[[["",0]],["",0]],[[["",0]],["",0]],[[["",0]],["comment",3]],[[["",0],["",0]]],null,null,[[],["comment",3]],[[],["result",4]],[[["",0],["comment",3]],["bool",0]],[[["",0],["formatter",3]],["result",6]],[[]],null,[[]],null,[[["",0],["comment",3]],["bool",0]],null,null,[[["",0]],["result",4]],[[["",0]]],[[],["result",4]],[[],["result",4]],[[["",0]],["typeid",3]],null,null,[[["",0]],["",0]],[[["",0]],["",0]],[[["",0]],["identities",3]],[[["",0],["",0]]],[[],["identities",3]],[[],["result",4]],[[["",0],["identities",3]],["bool",0]],[[["",0],["formatter",3]],["result",6]],[[]],[[]],[[["",0],["identities",3]],["bool",0]],null,[[["",0]],["result",4]],[[["",0]]],[[],["result",4]],[[],["result",4]],[[["",0]],["typeid",3]],null,null,[[["",0]],["",0]],[[["",0]],["",0]],[[["",0]],["issue",3]],[[["",0],["",0]]],null,null,null,[[],["issue",3]],[[],["result",4]],[[["",0],["issue",3]],["bool",0]],[[["",0],["formatter",3]],["result",6]],[[]],null,[[]],null,null,null,[[["",0],["issue",3]],["bool",0]],null,null,null,[[["",0]],["result",4]],null,null,[[["",0]]],[[],["result",4]],[[],["result",4]],[[["",0]],["typeid",3]],null,null,[[["",0]],["",0]],[[["",0]],["",0]],[[["",0]],["label",3]],[[["",0],["",0]]],null,[[],["label",3]],null,[[],["result",4]],[[["",0],["label",3]],["bool",0]],[[["",0],["formatter",3]],["result",6]],[[]],null,[[]],null,[[["",0],["label",3]],["bool",0]],[[["",0]],["result",4]],[[["",0]]],[[],["result",4]],[[],["result",4]],[[["",0]],["typeid",3]],null,[[["",0]],["",0]],[[["",0]],["",0]],[[["",0]],["milestone",3]],[[["",0],["",0]]],null,null,null,[[],["milestone",3]],null,[[],["result",4]],[[["",0],["milestone",3]],["bool",0]],[[["",0],["formatter",3]],["result",6]],[[]],null,[[]],[[["",0],["milestone",3]],["bool",0]],[[["",0]],["result",4]],null,null,[[["",0]]],[[],["result",4]],[[],["result",4]],[[["",0]],["typeid",3]],null,null,[[["",0]],["",0]],[[["",0]],["",0]],[[["",0]],["project",3]],[[["",0],["",0]]],null,[[],["project",3]],null,null,[[],["result",4]],[[["",0],["project",3]],["bool",0]],[[["",0],["formatter",3]],["result",6]],[[]],null,[[]],null,null,null,[[["",0],["project",3]],["bool",0]],null,null,null,[[["",0]],["result",4]],[[["",0]]],[[],["result",4]],[[],["result",4]],[[["",0]],["typeid",3]],null,[[["",0]],["",0]],[[["",0]],["",0]],[[["",0]],["reaction",3]],[[["",0],["",0]]],null,[[],["reaction",3]],[[],["result",4]],[[["",0],["reaction",3]],["bool",0]],[[["",0],["formatter",3]],["result",6]],[[]],null,[[]],[[["",0],["reaction",3]],["bool",0]],[[["",0]],["result",4]],[[["",0]]],[[],["result",4]],[[],["result",4]],[[["",0]],["typeid",3]],null,null,[[["",0]],["",0]],[[["",0]],["",0]],[[["",0]],["repository",3]],[[["",0],["",0]]],[[],["repository",3]],[[],["result",4]],[[["",0],["repository",3]],["bool",0]],[[["",0],["formatter",3]],["result",6]],[[]],[[]],null,[[["",0],["repository",3]],["bool",0]],[[["",0]],["result",4]],[[["",0]]],[[],["result",4]],[[],["result",4]],[[["",0]],["typeid",3]],null,[[["",0]],["",0]],[[["",0]],["",0]],[[["",0]],["topic",3]],[[["",0],["",0]]],[[],["topic",3]],[[],["result",4]],[[["",0],["topic",3]],["bool",0]],[[["",0],["formatter",3]],["result",6]],[[]],null,[[]],null,[[["",0],["topic",3]],["bool",0]],[[["",0]],["result",4]],[[["",0]]],[[],["result",4]],[[],["result",4]],[[["",0]],["typeid",3]],null,[[["",0]],["",0]],[[["",0]],["",0]],[[["",0]],["user",3]],[[["",0],["",0]]],[[],["user",3]],[[],["result",4]],null,[[["",0],["user",3]],["bool",0]],[[["",0],["formatter",3]],["result",6]],[[]],null,[[]],null,[[["",0],["user",3]],["bool",0]],null,[[["",0]],["result",4]],[[["",0]]],[[],["result",4]],[[],["result",4]],[[["",0]],["typeid",3]],null],"p":[[4,"OpenCloseState"],[3,"Comment"],[3,"Identities"],[3,"Issue"],[3,"Label"],[3,"Milestone"],[3,"Project"],[3,"Reaction"],[3,"Repository"],[3,"Topic"],[3,"User"]]}\ +"f3_rs":{"doc":"Welcome to F3 Documentation!","t":[13,13,4,11,11,11,11,0,11,11,11,11,11,0,11,0,0,0,0,0,0,0,11,11,0,11,11,11,0,3,11,11,11,11,12,12,11,11,11,11,11,12,11,12,11,12,12,11,11,11,11,11,12,3,11,11,11,11,11,11,11,11,11,11,11,12,11,11,11,11,11,3,12,11,11,11,11,12,12,12,11,11,11,11,11,12,11,12,12,12,11,12,12,12,11,12,12,11,11,11,11,12,3,11,11,11,11,12,11,12,11,11,11,11,12,11,12,11,11,11,11,11,11,3,11,11,11,11,12,12,12,11,12,11,11,11,11,12,11,11,11,12,12,11,11,11,11,12,3,11,11,11,11,12,11,12,12,11,11,11,11,12,11,12,12,12,11,12,12,12,11,11,11,11,11,3,3,12,12,11,11,11,11,11,11,11,11,12,12,12,12,11,11,11,11,11,11,11,11,11,11,12,12,11,11,12,12,12,12,12,12,11,11,12,12,12,12,12,12,11,11,12,12,12,11,11,11,11,11,11,11,11,12,3,11,11,11,11,12,11,11,11,11,11,12,11,11,11,11,11,11,11,12,3,11,11,11,11,11,11,11,11,11,11,12,11,11,11,11,11,11,3,11,11,11,11,11,11,11,11,11,12,11,12,11,11,11,11,11,11,3,11,11,11,11,11,11,12,11,11,11,12,11,12,11,12,11,11,11,11,11,12],"n":["Closed","Open","OpenCloseState","borrow","borrow_mut","clone","clone_into","comment","default","deserialize","eq","fmt","from","identities","into","issue","label","milestone","project","pullrequest","reaction","repository","serialize","to_owned","topic","try_from","try_into","type_id","user","Comment","borrow","borrow_mut","clone","clone_into","content","created","default","deserialize","eq","fmt","from","index","into","issue_index","ne","poster_id","reactions","serialize","to_owned","try_from","try_into","type_id","updated","Identities","borrow","borrow_mut","clone","clone_into","default","deserialize","eq","fmt","from","into","ne","pairs","serialize","to_owned","try_from","try_into","type_id","Issue","assignees","borrow","borrow_mut","clone","clone_into","closed","content","created","default","deserialize","eq","fmt","from","index","into","is_locked","labels","milestone","ne","poster_id","reactions","reference","serialize","state","title","to_owned","try_from","try_into","type_id","updated","Label","borrow","borrow_mut","clone","clone_into","color","default","description","deserialize","eq","fmt","from","index","into","name","ne","serialize","to_owned","try_from","try_into","type_id","Milestone","borrow","borrow_mut","clone","clone_into","closed","created","deadline","default","description","deserialize","eq","fmt","from","index","into","ne","serialize","state","title","to_owned","try_from","try_into","type_id","updated","Project","borrow","borrow_mut","clone","clone_into","clone_url","default","default_branch","description","deserialize","eq","fmt","from","index","into","is_mirror","is_private","name","ne","original_url","owner","repositories","serialize","to_owned","try_from","try_into","type_id","PullRequest","PullRequestRef","assignees","base","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","clone_url","closed","content","created","default","default","deserialize","deserialize","eq","eq","fmt","fmt","from","from","head","index","into","into","is_locked","labels","merged","merged_commit_sha","merged_time","milestone","ne","ne","owner_name","patch_url","poster_id","reactions","reference","repo_name","serialize","serialize","sha","state","title","to_owned","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","updated","Reaction","borrow","borrow_mut","clone","clone_into","content","default","deserialize","eq","fmt","from","index","into","ne","serialize","to_owned","try_from","try_into","type_id","user_id","Repository","borrow","borrow_mut","clone","clone_into","default","deserialize","eq","fmt","from","into","name","ne","serialize","to_owned","try_from","try_into","type_id","Topic","borrow","borrow_mut","clone","clone_into","default","deserialize","eq","fmt","from","index","into","name","ne","serialize","to_owned","try_from","try_into","type_id","User","borrow","borrow_mut","clone","clone_into","default","deserialize","email","eq","fmt","from","index","into","name","ne","password","serialize","to_owned","try_from","try_into","type_id","username"],"q":["f3_rs","","","","","","","","","","","","","","","","","","","","","","","","","","","","","f3_rs::comment","","","","","","","","","","","","","","","","","","","","","","","","f3_rs::identities","","","","","","","","","","","","","","","","","","f3_rs::issue","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","f3_rs::label","","","","","","","","","","","","","","","","","","","","","f3_rs::milestone","","","","","","","","","","","","","","","","","","","","","","","","","f3_rs::project","","","","","","","","","","","","","","","","","","","","","","","","","","","f3_rs::pullrequest","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","f3_rs::reaction","","","","","","","","","","","","","","","","","","","","f3_rs::repository","","","","","","","","","","","","","","","","","","f3_rs::topic","","","","","","","","","","","","","","","","","","","f3_rs::user","","","","","","","","","","","","","","","","","","","","",""],"d":["A ‘closed’ issue will not see any activity in the …","An ‘open’ issue will see activity in the future","states of issue, milestone, etc with only “open” and …","","","","","Comments associated to an issue or a pull/merge request …","","","","","Returns the argument unchanged.","Pairs of identities mapping one forge to another.","Calls U::from(self).","Issues associated to a repository within a forge (Gitea, …","Label associated to an issue or a comment","Milestone associated to a repository within a forge","A software project that resides on a forge (Gitea, GitLab, …","Pull requests associated to a repository within a forge …","Reaction associated to an issue or a comment","VCS repository relative to a project.","","","A list of categories associated with a project.","","","","A forge user","Comments associated to an issue or a pull/merge request …","","","","","Multiline content of the comment","Creating time","","","","","Returns the argument unchanged.","Unique identifier of the comment","Calls U::from(self).","Unique identifier of the issue or pull/merge request …","","Unique identifier of the user who authored the comment","Multiline content of the comment","","","","","","Last update time","Pairs of identities mapping one forge to another. The …","","","","","","","","","Returns the argument unchanged.","Calls U::from(self).","","","","","","","","Issues associated to a repository within a forge (Gitea, …","List of assignees.","","","","","The last time ‘state’ changed to ‘closed’","Long, multiline, description","Creation time","","","","","Returns the argument unchanged.","Unique identifier, relative to the repository","Calls U::from(self).","A locked issue can only be modified by privileged users","List of labels.","Name of the milestone","","Unique identifier of the user who authored the issue.","List of reactions","Target branch in the repository.","","state of the issue","Short description displayed as the title.","","","","","Last update time","Label associated to an issue or a comment","","","","","Color code of the label","","Long, multi-line description","","","","Returns the argument unchanged.","Unique identifier of the label","Calls U::from(self).","Name of the label, unique within the repository","","","","","","","Milestone associated to a repository within a forge","","","","","The last time ‘state’ changed to ‘closed’","Creating time","Deadline after which the milestone is overdue","","Long, multiline, description","","","","Returns the argument unchanged.","Unique identifier","Calls U::from(self).","","","A ‘closed’ milestone will not see any activity in the …","Short description","","","","","Last update time","A software project that resides on a forge (Gitea, GitLab, …","","","","","URL to clone the git repository of the project.","","Name of the default branch in the git repository","Long, multiline, description of the project.","","","","Returns the argument unchanged.","Unique identifier of the project","Calls U::from(self).","True if it is a mirror of a project residing on another …","True if the visibility of the project is not public.","Name of the project, relative to the owner","","URL of the homepage of the project","Owner of the project, either a forge user or an …","","","","","","","Pull requests associated to a repository within a forge …","PullRequest reference to a commit The location of a …","List of assignees.","The branch where the pull request changes in the head are …","","","","","","","","","URL of the repository where the commit is located.","The last time ‘state’ changed to ‘closed’","Long, multiline, description","Creation time","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","The changes proposed in the pull request.","Unique identifier, relative to the repository","Calls U::from(self).","Calls U::from(self).","A locked pull request issue can only be modified by …","List of labels.","True if the pull request was merged","The SHA of the merge commit","The time when the pull request was merged.","Name of the milestone","","","Name of the user or organization that contains the project.","URL from which the patch of the pull request can be …","Unique identifier of the user who authored the pull …","List of reactions","Target branch in the repository.","Name of the project that contains the git repository.","","","SHA of the commit","state of the pull request","Short description displayed as the title.","","","","","","","","","Last update time","Reaction associated to an issue or a comment","","","","","Representation of the reaction","","","","","Returns the argument unchanged.","Unique identifier of the reaction","Calls U::from(self).","","","","","","","Unique identifier of the user who authored the reaction","VCS repository relative to a project.","","","","","","","","","Returns the argument unchanged.","Calls U::from(self).","Suffix to add to the clone URL of the project to access …","","","","","","","A list of categories associated with a project.","","","","","","","","","Returns the argument unchanged.","Unique identifier of the topic","Calls U::from(self).","Name of the category the project belongs to","","","","","","","A forge user","","","","","","","Mail of the user","","","Returns the argument unchanged.","Unique identifier of the user","Calls U::from(self).","User readable name of the user","","Password of the user","","","","","","Unique name readable name of the user"],"i":[1,1,0,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,0,8,8,8,9,8,9,8,9,8,9,9,8,8,8,8,9,8,9,8,9,8,9,8,9,8,8,8,9,8,8,8,8,8,8,8,9,9,8,8,8,9,9,8,9,9,8,8,8,9,8,9,8,9,8,9,8,0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,0,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13],"f":[null,null,null,[[["",0]],["",0]],[[["",0]],["",0]],[[["",0]],["openclosestate",4]],[[["",0],["",0]]],null,[[]],[[],["result",4]],[[["",0],["openclosestate",4]],["bool",0]],[[["",0],["formatter",3]],["result",6]],[[]],null,[[]],null,null,null,null,null,null,null,[[["",0]],["result",4]],[[["",0]]],null,[[],["result",4]],[[],["result",4]],[[["",0]],["typeid",3]],null,null,[[["",0]],["",0]],[[["",0]],["",0]],[[["",0]],["comment",3]],[[["",0],["",0]]],null,null,[[],["comment",3]],[[],["result",4]],[[["",0],["comment",3]],["bool",0]],[[["",0],["formatter",3]],["result",6]],[[]],null,[[]],null,[[["",0],["comment",3]],["bool",0]],null,null,[[["",0]],["result",4]],[[["",0]]],[[],["result",4]],[[],["result",4]],[[["",0]],["typeid",3]],null,null,[[["",0]],["",0]],[[["",0]],["",0]],[[["",0]],["identities",3]],[[["",0],["",0]]],[[],["identities",3]],[[],["result",4]],[[["",0],["identities",3]],["bool",0]],[[["",0],["formatter",3]],["result",6]],[[]],[[]],[[["",0],["identities",3]],["bool",0]],null,[[["",0]],["result",4]],[[["",0]]],[[],["result",4]],[[],["result",4]],[[["",0]],["typeid",3]],null,null,[[["",0]],["",0]],[[["",0]],["",0]],[[["",0]],["issue",3]],[[["",0],["",0]]],null,null,null,[[],["issue",3]],[[],["result",4]],[[["",0],["issue",3]],["bool",0]],[[["",0],["formatter",3]],["result",6]],[[]],null,[[]],null,null,null,[[["",0],["issue",3]],["bool",0]],null,null,null,[[["",0]],["result",4]],null,null,[[["",0]]],[[],["result",4]],[[],["result",4]],[[["",0]],["typeid",3]],null,null,[[["",0]],["",0]],[[["",0]],["",0]],[[["",0]],["label",3]],[[["",0],["",0]]],null,[[],["label",3]],null,[[],["result",4]],[[["",0],["label",3]],["bool",0]],[[["",0],["formatter",3]],["result",6]],[[]],null,[[]],null,[[["",0],["label",3]],["bool",0]],[[["",0]],["result",4]],[[["",0]]],[[],["result",4]],[[],["result",4]],[[["",0]],["typeid",3]],null,[[["",0]],["",0]],[[["",0]],["",0]],[[["",0]],["milestone",3]],[[["",0],["",0]]],null,null,null,[[],["milestone",3]],null,[[],["result",4]],[[["",0],["milestone",3]],["bool",0]],[[["",0],["formatter",3]],["result",6]],[[]],null,[[]],[[["",0],["milestone",3]],["bool",0]],[[["",0]],["result",4]],null,null,[[["",0]]],[[],["result",4]],[[],["result",4]],[[["",0]],["typeid",3]],null,null,[[["",0]],["",0]],[[["",0]],["",0]],[[["",0]],["project",3]],[[["",0],["",0]]],null,[[],["project",3]],null,null,[[],["result",4]],[[["",0],["project",3]],["bool",0]],[[["",0],["formatter",3]],["result",6]],[[]],null,[[]],null,null,null,[[["",0],["project",3]],["bool",0]],null,null,null,[[["",0]],["result",4]],[[["",0]]],[[],["result",4]],[[],["result",4]],[[["",0]],["typeid",3]],null,null,null,null,[[["",0]],["",0]],[[["",0]],["",0]],[[["",0]],["",0]],[[["",0]],["",0]],[[["",0]],["pullrequest",3]],[[["",0]],["pullrequestref",3]],[[["",0],["",0]]],[[["",0],["",0]]],null,null,null,null,[[],["pullrequest",3]],[[],["pullrequestref",3]],[[],["result",4]],[[],["result",4]],[[["",0],["pullrequest",3]],["bool",0]],[[["",0],["pullrequestref",3]],["bool",0]],[[["",0],["formatter",3]],["result",6]],[[["",0],["formatter",3]],["result",6]],[[]],[[]],null,null,[[]],[[]],null,null,null,null,null,null,[[["",0],["pullrequest",3]],["bool",0]],[[["",0],["pullrequestref",3]],["bool",0]],null,null,null,null,null,null,[[["",0]],["result",4]],[[["",0]],["result",4]],null,null,null,[[["",0]]],[[["",0]]],[[],["result",4]],[[],["result",4]],[[],["result",4]],[[],["result",4]],[[["",0]],["typeid",3]],[[["",0]],["typeid",3]],null,null,[[["",0]],["",0]],[[["",0]],["",0]],[[["",0]],["reaction",3]],[[["",0],["",0]]],null,[[],["reaction",3]],[[],["result",4]],[[["",0],["reaction",3]],["bool",0]],[[["",0],["formatter",3]],["result",6]],[[]],null,[[]],[[["",0],["reaction",3]],["bool",0]],[[["",0]],["result",4]],[[["",0]]],[[],["result",4]],[[],["result",4]],[[["",0]],["typeid",3]],null,null,[[["",0]],["",0]],[[["",0]],["",0]],[[["",0]],["repository",3]],[[["",0],["",0]]],[[],["repository",3]],[[],["result",4]],[[["",0],["repository",3]],["bool",0]],[[["",0],["formatter",3]],["result",6]],[[]],[[]],null,[[["",0],["repository",3]],["bool",0]],[[["",0]],["result",4]],[[["",0]]],[[],["result",4]],[[],["result",4]],[[["",0]],["typeid",3]],null,[[["",0]],["",0]],[[["",0]],["",0]],[[["",0]],["topic",3]],[[["",0],["",0]]],[[],["topic",3]],[[],["result",4]],[[["",0],["topic",3]],["bool",0]],[[["",0],["formatter",3]],["result",6]],[[]],null,[[]],null,[[["",0],["topic",3]],["bool",0]],[[["",0]],["result",4]],[[["",0]]],[[],["result",4]],[[],["result",4]],[[["",0]],["typeid",3]],null,[[["",0]],["",0]],[[["",0]],["",0]],[[["",0]],["user",3]],[[["",0],["",0]]],[[],["user",3]],[[],["result",4]],null,[[["",0],["user",3]],["bool",0]],[[["",0],["formatter",3]],["result",6]],[[]],null,[[]],null,[[["",0],["user",3]],["bool",0]],null,[[["",0]],["result",4]],[[["",0]]],[[],["result",4]],[[],["result",4]],[[["",0]],["typeid",3]],null],"p":[[4,"OpenCloseState"],[3,"Comment"],[3,"Identities"],[3,"Issue"],[3,"Label"],[3,"Milestone"],[3,"Project"],[3,"PullRequest"],[3,"PullRequestRef"],[3,"Reaction"],[3,"Repository"],[3,"Topic"],[3,"User"]]}\ }'); if (window.initSearch) {window.initSearch(searchIndex)}; \ No newline at end of file diff --git a/source-files.js b/source-files.js index e1969c5..3054073 100644 --- a/source-files.js +++ b/source-files.js @@ -1,3 +1,3 @@ var N = null;var sourcesIndex = {}; -sourcesIndex["f3_rs"] = {"name":"","files":["comment.rs","identities.rs","issue.rs","label.rs","lib.rs","milestone.rs","project.rs","reaction.rs","repository.rs","topic.rs","user.rs"]}; +sourcesIndex["f3_rs"] = {"name":"","files":["comment.rs","identities.rs","issue.rs","label.rs","lib.rs","milestone.rs","project.rs","pullrequest.rs","reaction.rs","repository.rs","topic.rs","user.rs"]}; createSourceSidebar(); diff --git a/src/f3_rs/issue.rs.html b/src/f3_rs/issue.rs.html index 1734f8f..52a62c1 100644 --- a/src/f3_rs/issue.rs.html +++ b/src/f3_rs/issue.rs.html @@ -131,7 +131,7 @@ pub is_locked: bool, // TODO: add validation for format "date-time" - /// Creating time + /// Creation time pub created: String, // TODO: add validation for format "date-time" @@ -145,7 +145,7 @@ /// List of labels. pub labels: Option<Vec<String>>, - /// Multiline content of the comment + /// List of reactions pub reactions: Option<Vec<Reaction>>, /// List of assignees. diff --git a/src/f3_rs/lib.rs.html b/src/f3_rs/lib.rs.html index 3cd9c96..e52dc0a 100644 --- a/src/f3_rs/lib.rs.html +++ b/src/f3_rs/lib.rs.html @@ -63,6 +63,8 @@ 58 59 60 +61 +62
/*
  * Copyright (C) 2023  Aravinth Manivannan <realaravinth@batsense.net>
  *
@@ -91,6 +93,7 @@
 pub mod label;
 pub mod milestone;
 pub mod project;
+pub mod pullrequest;
 pub mod reaction;
 pub mod repository;
 pub mod topic;
@@ -102,6 +105,7 @@
 pub use label::Label;
 pub use milestone::Milestone;
 pub use project::Project;
+pub use pullrequest::PullRequest;
 pub use reaction::Reaction;
 pub use repository::Repository;
 pub use topic::Topic;
diff --git a/src/f3_rs/pullrequest.rs.html b/src/f3_rs/pullrequest.rs.html
new file mode 100644
index 0000000..1aec9d2
--- /dev/null
+++ b/src/f3_rs/pullrequest.rs.html
@@ -0,0 +1,228 @@
+pullrequest.rs - source
+    
+    
  1
+  2
+  3
+  4
+  5
+  6
+  7
+  8
+  9
+ 10
+ 11
+ 12
+ 13
+ 14
+ 15
+ 16
+ 17
+ 18
+ 19
+ 20
+ 21
+ 22
+ 23
+ 24
+ 25
+ 26
+ 27
+ 28
+ 29
+ 30
+ 31
+ 32
+ 33
+ 34
+ 35
+ 36
+ 37
+ 38
+ 39
+ 40
+ 41
+ 42
+ 43
+ 44
+ 45
+ 46
+ 47
+ 48
+ 49
+ 50
+ 51
+ 52
+ 53
+ 54
+ 55
+ 56
+ 57
+ 58
+ 59
+ 60
+ 61
+ 62
+ 63
+ 64
+ 65
+ 66
+ 67
+ 68
+ 69
+ 70
+ 71
+ 72
+ 73
+ 74
+ 75
+ 76
+ 77
+ 78
+ 79
+ 80
+ 81
+ 82
+ 83
+ 84
+ 85
+ 86
+ 87
+ 88
+ 89
+ 90
+ 91
+ 92
+ 93
+ 94
+ 95
+ 96
+ 97
+ 98
+ 99
+100
+101
+102
+103
+104
+105
+106
+107
+108
+109
+110
+
/*
+ * Copyright (C) 2023  Aravinth Manivannan <realaravinth@batsense.net>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ */
+//! Pull requests associated to a repository within a forge (Gitea, GitLab, etc.)
+use serde::{Deserialize, Serialize};
+
+use crate::{OpenCloseState, Reaction};
+
+/// Pull requests associated to a repository within a forge (Gitea, GitLab, etc.)
+#[derive(Clone, Debug, Serialize, Deserialize, Default, Eq, PartialEq)]
+pub struct PullRequest {
+    /// Unique identifier, relative to the repository
+    pub index: usize,
+
+    /// Unique identifier of the user who authored the pull request.
+    pub poster_id: usize,
+
+    /// Short description displayed as the title.
+    pub title: String,
+
+    /// Long, multiline, description
+    pub content: String,
+
+    /// Name of the milestone
+    pub milestone: Option<String>,
+
+    /// state of the pull request
+    pub state: OpenCloseState,
+
+    /// A locked pull request issue can only be modified by privileged users
+    pub is_locked: bool,
+
+    // TODO: add validation for format "date-time"
+    /// Creation time
+    pub created: String,
+
+    // TODO: add validation for format "date-time"
+    /// Last update time
+    pub updated: String,
+
+    // TODO: add validation for format "date-time"
+    /// The last time 'state' changed to 'closed'
+    pub closed: Option<String>,
+
+    ///  List of labels.
+    pub labels: Option<Vec<String>>,
+
+    /// List of reactions
+    pub reactions: Option<Vec<Reaction>>,
+
+    ///  List of assignees.
+    pub assignees: Option<Vec<String>>,
+
+    /// URL from which the patch of the pull request can be retrieved.
+    pub patch_url: String,
+
+    /// True if the pull request was merged
+    pub merged: bool,
+
+    // TODO: add validation for format "date-time"
+    /// The time when the pull request was merged.
+    pub merged_time: Option<String>,
+
+    /// The SHA of the merge commit
+    pub merged_commit_sha: Option<String>,
+
+    /// The changes proposed in the pull request.
+    pub head: Option<PullRequestRef>,
+
+    /// The branch where the pull request changes in the head are to be merged.
+    pub base: Option<PullRequestRef>,
+}
+
+/// PullRequest reference to a commit
+/// The location of a commit, including the URL of the repository where it can be found
+#[derive(Clone, Debug, Serialize, Deserialize, Default, Eq, PartialEq)]
+pub struct PullRequestRef {
+    /// URL of the repository where the commit is located.
+    pub clone_url: String,
+
+    /// Target branch in the repository.
+    ///
+    /// NOTE: Actual property is called "ref" but it is a keyword in Rust so we are using
+    /// "reference". However, "reference" will automatically be renamed to "ref" while serializing
+    /// and vice versa
+    #[serde(rename(serialize = "ref", deserialize = "ref"))]
+    pub reference: Option<String>,
+
+    /// SHA of the commit
+    pub sha: String,
+
+    /// Name of the project that contains the git repository.
+    pub repo_name: String,
+
+    /// Name of the user or organization that contains the project.
+    pub owner_name: String,
+}
+
+
+ \ No newline at end of file