Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nicholas Bailey
rust-gitlab
Commits
cd75bde3
Commit
cd75bde3
authored
Oct 31, 2016
by
Ben Boeckel
⛰
Browse files
traits: derive sensible traits
parent
adece3e7
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/gitlab.rs
View file @
cd75bde3
...
...
@@ -21,6 +21,8 @@ use self::url::percent_encoding::{PATH_SEGMENT_ENCODE_SET, percent_encode};
use
super
::
error
::
Error
;
use
super
::
types
::
*
;
use
std
::
fmt
::{
self
,
Debug
};
// TODO: Add system hook APIs
// TODO: Add webhook APIs
...
...
@@ -33,12 +35,19 @@ pub struct Gitlab {
token
:
String
,
}
impl
Debug
for
Gitlab
{
fn
fmt
(
&
self
,
f
:
&
mut
fmt
::
Formatter
)
->
Result
<
(),
fmt
::
Error
>
{
write!
(
f
,
"Gitlab {{ {} }}"
,
self
.base_url
)
}
}
// The header Gitlab uses to authenticate the user.
header!
{
(
GitlabPrivateToken
,
"PRIVATE-TOKEN"
)
=>
[
String
]
}
/// A JSON value return from Gitlab.
pub
type
GitlabResult
<
T
:
Deserialize
>
=
Result
<
T
,
Error
>
;
#[derive(Debug)]
/// Optional information for commit statuses.
pub
struct
CommitStatusInfo
<
'a
>
{
/// The refname of the commit being tested.
...
...
src/types.rs.in
View file @
cd75bde3
...
...
@@ -297,7 +297,7 @@ impl From<ProjectHook> for Hook {
}
}
#[derive(De
fault
)]
#[derive(De
bug, Default, Clone, Copy
)]
pub struct WebhookEvents {
build: bool,
issues: bool,
...
...
@@ -393,7 +393,7 @@ pub struct SharedGroup {
pub group_access_level: u64,
}
#[derive(Serialize, Deserialize, Debug)]
#[derive(Serialize, Deserialize, Debug
, Clone, Copy
)]
// Called `MemberAccess` in entities.rb, but it is just a base class for `ProjectAccess` and
// `GroupAccess`. Combine them here.
pub struct MemberAccess {
...
...
@@ -401,7 +401,7 @@ pub struct MemberAccess {
pub notification_level: Option<u64>,
}
#[derive(Serialize, Deserialize, Debug)]
#[derive(Serialize, Deserialize, Debug
, Clone, Copy
)]
pub struct Permissions {
pub project_access: Option<MemberAccess>,
pub group_access: Option<MemberAccess>,
...
...
@@ -763,7 +763,7 @@ pub struct RepoCommit {
pub message: String,
}
#[derive(Serialize, Deserialize, Debug)]
#[derive(Serialize, Deserialize, Debug
, Clone, Copy
)]
pub struct RepoCommitStats {
pub additions: u64,
pub deletions: u64,
...
...
@@ -901,6 +901,7 @@ pub struct ExternalIssue {
pub title: String,
}
#[derive(Debug)]
pub enum IssueReference {
Internal(Issue),
External(ExternalIssue),
...
...
@@ -1093,7 +1094,7 @@ enum_serialize!(NoteType -> "note type",
Snippet => "Snippet",
);
#[derive(Clone, PartialEq, Eq)]
#[derive(
Debug,
Clone, PartialEq, Eq)]
pub enum NoteableId {
Commit(ObjectId),
Issue(IssueId),
...
...
@@ -1150,7 +1151,7 @@ impl Note {
pub struct AwardId(u64);
impl_id!(AwardId);
#[derive(
Clone
, PartialEq, Eq)]
#[derive(
Debug, Clone, Copy
, PartialEq, Eq)]
pub enum AwardableId {
Issue(IssueId),
MergeRequest(MergeRequestId),
...
...
@@ -1275,7 +1276,7 @@ enum_serialize!(EventTargetType -> "event target type",
ProjectSnippet => "project_snippet",
);
#[derive(Clone, PartialEq, Eq)]
#[derive(
Debug,
Clone, PartialEq, Eq)]
pub enum EventTargetId {
Commit(ObjectId),
Issue(IssueId),
...
...
@@ -1345,7 +1346,7 @@ enum_serialize!(NamespaceKind -> "namespace kind",
Group => "group",
);
#[derive(Clone, Copy, PartialEq, Eq)]
#[derive(
Debug,
Clone, Copy, PartialEq, Eq)]
pub enum NamespaceId {
User(UserId),
Group(GroupId),
...
...
src/webhooks.rs.in
View file @
cd75bde3
...
...
@@ -20,7 +20,7 @@ use super::types::{BuildId, IssueId, IssueState, MergeRequestId, MergeRequestSta
MilestoneId, NoteId, NoteType, NoteableId, ObjectId, ProjectId, SnippetId,
UserId};
#[derive(Debug)]
#[derive(Debug
, Clone, Copy
)]
pub struct HookDate(DateTime<UTC>);
impl Serialize for HookDate {
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment