coerce an object to a protobuf message
对象强制转换为一个protobuf消息
译者:生物统计家园网 机器人LoveR
描述----------Description----------
coerce an object to the Message class. This is a short-hand to the as method with the Class argument set to "Message"
强制Message类的一个对象。这是一个短手的方法的Class参数设置为“消息”
用法----------Usage----------
asMessage(x, ...)
参数----------Arguments----------
参数:x
object to coerce to a protobuf message
反对强迫一个protobuf消息
参数:...
Passed to as
传递as的
值----------Value----------
a Message object
一个Message对象
(作者)----------Author(s)----------
Romain Francois <francoisromain@free.fr>
实例----------Examples----------
# coerce a message type descriptor to a message[强迫的消息类型描述符消息]
asMessage( tutorial.Person )
# coerce a enum descriptor[强迫枚举描述符]
asMessage( tutorial.Person.PhoneType )
# coerce a field descriptor[强迫段描述符]
asMessage( tutorial.Person$email )