zerodds-py 1.0.0-rc.6

PyO3 bindings for the ZeroDDS DCPS API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# SPDX-License-Identifier: Apache-2.0
# Auto-generated by `zerodds-idl-python`. Do not edit by hand.

from dataclasses import dataclass
from typing import List
from zerodds.idl import idl_struct, BoundedString, BoundedWString, Int32, Map, Sequence, String

@idl_struct(typename="b::Bounded", extensibility="appendable")
@dataclass
class b_Bounded:
    nums: Sequence[Int32, 3]
    name: BoundedString[5]
    wname: BoundedWString[3]
    counters: Map[String, Int32, 2]
    unbounded: List[Int32]
    fullstr: String