#[repr(C)]pub struct FunctionLikeParameterList {
pub left_parenthesis: Span,
pub parameters: TokenSeparatedSequence<FunctionLikeParameter>,
pub right_parenthesis: Span,
}Expand description
Represents a parameter list in PHP.
Fields§
§left_parenthesis: Span§parameters: TokenSeparatedSequence<FunctionLikeParameter>§right_parenthesis: SpanTrait Implementations§
Source§impl Clone for FunctionLikeParameterList
impl Clone for FunctionLikeParameterList
Source§fn clone(&self) -> FunctionLikeParameterList
fn clone(&self) -> FunctionLikeParameterList
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FunctionLikeParameterList
impl Debug for FunctionLikeParameterList
Source§impl<'de> Deserialize<'de> for FunctionLikeParameterList
impl<'de> Deserialize<'de> for FunctionLikeParameterList
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl HasSpan for FunctionLikeParameterList
impl HasSpan for FunctionLikeParameterList
Source§impl Hash for FunctionLikeParameterList
impl Hash for FunctionLikeParameterList
Source§impl Ord for FunctionLikeParameterList
impl Ord for FunctionLikeParameterList
Source§fn cmp(&self, other: &FunctionLikeParameterList) -> Ordering
fn cmp(&self, other: &FunctionLikeParameterList) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for FunctionLikeParameterList
impl PartialOrd for FunctionLikeParameterList
impl Eq for FunctionLikeParameterList
impl StructuralPartialEq for FunctionLikeParameterList
Auto Trait Implementations§
impl Freeze for FunctionLikeParameterList
impl RefUnwindSafe for FunctionLikeParameterList
impl Send for FunctionLikeParameterList
impl Sync for FunctionLikeParameterList
impl Unpin for FunctionLikeParameterList
impl UnwindSafe for FunctionLikeParameterList
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more