FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
openapi/python/src/types.rs at main · tsui66/openapi · GitHub
tsui66
/
openapi
Public
forked from
longbridge/openapi
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
openapi
/
python
/
src
/
types.rs
Copy path
More file actions
More file actions
Latest commit
History
History
History
42 lines (39 loc) · 861 Bytes
Breadcrumbs
openapi
/
python
/
src
/
types.rs
Copy path
File metadata and controls
42 lines (39 loc) · 861 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
use
longport_python_macros
::
PyEnum
;
use
pyo3
::
prelude
::
*
;
#
[
pyclass
(
eq
,
eq_int
)
]
#
[
derive
(
Debug
,
PyEnum
,
Copy
,
Clone
,
Hash
,
Eq
,
PartialEq
)
]
#
[
py
(
remote =
"longport::Market"
)
]
pub
(
crate
)
enum
Market
{
/// Unknown
Unknown
,
/// US market
US
,
/// HK market
HK
,
/// CN market
CN
,
/// SG market
SG
,
}
#
[
pyclass
(
eq
,
eq_int
)
]
#
[
derive
(
Debug
,
PyEnum
,
Copy
,
Clone
,
Hash
,
Eq
,
PartialEq
)
]
#
[
allow
(
non_camel_case_types
)
]
#
[
py
(
remote =
"longport::Language"
)
]
pub
(
crate
)
enum
Language
{
/// zh-CN
ZH_CN
,
/// zh-HK
ZH_HK
,
/// en
EN
,
}
#
[
pyclass
(
eq
,
eq_int
)
]
#
[
derive
(
Debug
,
PyEnum
,
Copy
,
Clone
,
Hash
,
Eq
,
PartialEq
)
]
#
[
allow
(
non_camel_case_types
)
]
#
[
py
(
remote =
"longport::PushCandlestickMode"
)
]
pub
(
crate
)
enum
PushCandlestickMode
{
/// Realtime mode
Realtime
,
/// Confirmed mode
Confirmed
,
}
Back
|
FazBrowse Home
|
New Git URL