pub trait Object { type Id: AsCursorOpt + FromCursor; // Required methods fn id(&self) -> &Self::Id; fn into_id(self) -> Self::Id; }
Implemented by types which represent stripe objects.
The canonical id type for this object.
The id of the object.
The owned id of the object.